InterviewSolution
Saved Bookmarks
| 1. |
A. Write the Query to create a STUDENT CLASS X table with following Columns name and also Suggest the Data Types and size of each one:Column Name Data Type SizeRollNoNameAddressDate_of_Birth |
|
Answer» hi,Explanation:CREATE table STUDENTCLASSX ( Rollno integer (11) , NAME char (20) , address VARCHAR (20 ) , date_of_birth date);____________________________:) |
|