InterviewSolution
Saved Bookmarks
| 1. |
Write SQL query to create a table 'Song' with the following structure :FieldTypeConstraintSongidIntegerPrimary keyTitleVarchar(50)DurationIntegerReleaseDateDate |
|
Answer» Create Table Song (Songid Int Primary Key, Title Varchar (50), Duration Int, ReleaseDate Date); |
|