Hello Folks,
I have the following PL/SQL code that needs to be translated to T-SQL for SQL Server.
sql Code:
DECLARE x INTEGER := 100; y INTEGER := 10; BEGIN WHILE x != 110 LOOP INSERT INTO tab_for_nulls(rollno, marks) VALUES(x, y); x:=x+1; END LOOP; END;
Thanks!




Reply With Quote