Syntax:
select <FieldList> into new_table from existing_table <where condition>
Example:
select emp_id, emp_fname, emp_lname into emp_temp from emp_master where emp_state = 'NY'
** If you created the table for temporary usage, make sure to drop it, after using it.
No comments:
Post a Comment