1.

Write a MYSQL command for creating a table "BANK " whose structure is given below.Field NameDatatypeSizeConstraintAcct_NumberInteger4Primary KeyNameVarchar3BirthDateDateBalanceInteger8Not Null

Answer»

CREATE TABLE BANK (Acct_Number INTEGER(4) PRIMARY KEY, Name VARCHAR(3), BirthDate DATE, Balance INTEGER(8) NOTNULL);



Discussion

No Comment Found

Related InterviewSolutions