how to add sql table with uinqu key

Solutions on MaxInterview for how to add sql table with uinqu key by the best coders in the world

showing results for - "how to add sql table with uinqu key"
Bret
22 Jan 2018
1CREATE TABLE students  
2(  
3S_Id int NOT NULL,  
4LastName varchar (255) NOT NULL,  
5FirstName varchar (255),  
6City varchar (255),  
7UNIQUE (S_Id)  
8)