Answers for "how to add key in sql"

SQL
0

how to add sql table with uinqu key

CREATE TABLE students  
(  
S_Id int NOT NULL,  
LastName varchar (255) NOT NULL,  
FirstName varchar (255),  
City varchar (255),  
UNIQUE (S_Id)  
)
Posted by: Guest on October-07-2020

Code answers related to "how to add key in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language