1.

Write SQL query to create a table'Train with the following structure :FieIdTypeConstraintMetroIDIntegerPrimary keyOriginVarchar (50)DestinationVarchar (5)DistanceInteger

Answer»

Create Table Train

MetroID integer Primary Key,

Origin Varchar (50),

Destination Varchar (50),

Disiance Integer



Discussion

No Comment Found

Related InterviewSolutions