Question: Which SQL command cannot be used to create the Student relation below? Student Relation Student _ ID Student _ Name Dept _ Name 0 0

Which SQL command cannot be used to create the Student relation below?
Student Relation
Student_ID Student_Name Dept_Name
0000 AAAAA Computer Science
1111 BBBBB Computer Science
2222 CCCCC Business Administration
Select one:
a.
CREATE TABLE Student(
Student_ID int,
Student_Name char(100),
Dept_Name char(100),
);
b.
CREATE TABLE Student(
Student_ID int,
Student_Name varchar(100),
Dept_Name varchar(100),
);
c.
CREATE TABLE Student(
Student_ID char(20),
Student_Name char(100),
Dept_Name char(100),
);
d.
CREATE TABLE Student(
Student_ID int,
Student_Name char(20),
Dept_Name char(20),
);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!