In SQL, which syntax is correct for inserting data into tblstudent?

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

Answer: Option C