Hi,
I have a SQL query like this.
DECLARE @months table(Month int identity (1,1))
DECLARE @i int set @i = 0
WHILE(@i<12)
BEGIN
INSERT @months default values
SET @i = @i + 1
END
Can anyone help me with the Same Query in Oracle. I am new to Oracle.
Thanks,
Vasuki
I have a SQL query like this.
DECLARE @months table(Month int identity (1,1))
DECLARE @i int set @i = 0
WHILE(@i<12)
BEGIN
INSERT @months default values
SET @i = @i + 1
END
Can anyone help me with the Same Query in Oracle. I am new to Oracle.
Thanks,
Vasuki
Comment