1.

Write SQL query to create a table 'Player' with the following structure :FieldTypeConstraintplayeridIntegerPrimary KeynameVarchar (50)heightIntegerweightIntegerdatebirthDateteamnameVarchar (50)

Answer»

CREATE TABLE Player(playerld integer PRIMARY KEY name varchar(S0), height integer, weight integer, datebirth date, teamname varchar(50));



Discussion

No Comment Found

Related InterviewSolutions