Saturday, August 2, 2014

Insert records from a table to other table


Note:   While inserting records from a table to other table  values clause must not be used

Example:
     
           insert into highAchiever (name, age)  (select name, age from salesperson where salary > 100000);

No comments:

Post a Comment