News

1.Create employee table with following attributes (empid NUMBER, empname VARCHAR(10), dept VARCHAR(10),salary NUMBER); 2.Create a cursor named as employee_cursor 3.Using cursor read each record and ...
We know that is possible to use the FOR LOOP statement without the cursor declaration, and you can just put the table1 (in this example) inside the FOR LOOP without cursor, but in this case you must ...