InterviewSolution
Saved Bookmarks
| 1. |
Write SQL query to create a table Inventory with the following structure :FieldTypeConstraintMaterialldIntegerPrimary keyMaterialVarcher(50)NOT NULLCategoryCharDatePurchaseDate |
|
Answer» CREATE TABLE Inventory ( Material Id Integer Primary Key, Material Varchar (50) NOT NULL, Category Char, DatePurchase Date ) : |
|