Computer Science, asked by gamercreek4, 3 months ago

Draw a table and specify Primary key, field names and records?​

Answers

Answered by Aashi6552
1

Answer:

T-SQL: Create a Primary key while creating a New Table. Syntax: CREATE TABLE <Table_Name> ( Column1 datatype, Column2 datatype,CONSTRAINT <Name> PRIMARY KEY (Column name) . ); Let's create a Table with One Column as a SQL Primary Key

Similar questions