InterviewSolution
Saved Bookmarks
| 1. |
How Can I Create Table With Same Structure Of Student Table? |
|
Answer» CREATE table STD as SELECT * from STUDENT; Create table std as Select * from Student; |
|