From c1719b54dc37c24bb430aab4f1a3184401cc3c88 Mon Sep 17 00:00:00 2001 From: Vikash Kumar Date: Thu, 6 Oct 2022 16:49:34 +0500 Subject: [PATCH] updated code for weather station 14 --- SQL/updated.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 SQL/updated.txt diff --git a/SQL/updated.txt b/SQL/updated.txt new file mode 100644 index 0000000..328985d --- /dev/null +++ b/SQL/updated.txt @@ -0,0 +1,7 @@ + +DECLARE @R AS INT = 20; +WHILE @R > 0 +BEGIN + PRINT REPLICATE('* ',@R) + SET @R = @R - 1 +END; \ No newline at end of file