In SQL, what code is correct for the insert a new student?

  • A. INSERT INTO tblstudent VALUES(101, ‘sok’) WHERE cid = NULL
  • B. INSERT tblstudent VALUES(101, ‘sok’) WHERE cid = NULL
  • C. INSERT INTO tblstudent(cid, name) VALUES(101, ‘sok’)
  • D. None correct

Answer: Option C