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
StudentID StudentName DeptName
AAAAA Computer Science
BBBBB Computer Science
CCCCC Business Administration
Select one:
a
CREATE TABLE Student
StudentID int,
StudentName char
DeptName char
;
b
CREATE TABLE Student
StudentID int,
StudentName varchar
DeptName varchar
;
c
CREATE TABLE Student
StudentID char
StudentName char
DeptName char
;
d
CREATE TABLE Student
StudentID int,
StudentName char
DeptName char
;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
