Cursor In Oracle .What is Cursor?
it is a pointer to this context area. Oracle creates context area for processing an SQL statement which contains all information about the statement.
Wednesday, August 17, 2016
How can I create an empty table emp with same structure as employees?
1. How can I create an empty table emp with same structure as employees?
Create table emp as select * from employees where 1=2;
0 comments:
Post a Comment