C-06-Q060mediumsingle_mcq
What is the correct syntax to create a student table with the given columns?
What is the correct syntax to create a student table with the given columns?
- a
CREATE TABLE student (name TEXT, class INTEGER, roll INTEGER, section TEXT); - b
CREATE student TABLE (name, class, roll, section); - c
MAKE TABLE student name TEXT class INTEGER; - d
CREATE TABLE (student) name=TEXT class=INTEGER;