In SQL, how to select multiple attributes from tblstudent?

  • A. SELECT cid & name FROM tblstudent
  • B. SELECT cid AND name FROM tblstudent
  • C. SELECT cid, name FROM tblstudent
  • D. None correct

Answer: Option C