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

Thanks!