InterviewSolution
Saved Bookmarks
| 1. |
Write SQL query to create a table "Job" with the following structure : Table:JobField nameData typeSizeConstraintJ_CodeInteger3Primary KeyJ_DescriptionVarchar25NotNullJ_Chg_HrIntegerJ_LastupdateDate |
|
Answer» Create table Job J_Code Integer(3) Primary Key, J_Description Varchar(25) Not Null, J_Chg_Hr Integer, J_Lastupdate Date); |
|