Q:

Write down the query to create tblstudent table with primary key (studentId)

0

Write down the query to create tblstudent table with primary key (studentId)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Create table tblstudent(
StudnetId int identity(1,1) Not null primary key, 
Firstname varchar(50), 
LastName varchar(50), 
Admission_fee int, 
Admission_date date, 
Branch date
)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Top 100 SQL server queries Interview questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to set Primary key(PK) using Alter command... >>
<< Write down the query to display all student name i...