InterviewSolution
Saved Bookmarks
| 1. |
How do you copy rows from one table to another? |
|
Answer» The INSERT statement can be used to add rows to a table by copying from another table. In this case, a subquery is used in the place of the VALUES clause. |
|