Home » MYSQL » Mysql Basic » Question
  1. What is true about the following SQL statement?
    SELECT * FROM Student;
    1. display only column names in Student
    2. improper case being used
    3. invalid
    4. display contents of Student
    5. None of these
Correct Option: D

The keywords and function names are not case sensitive in SQL. They can be named in any letter case. So, the above statement is correct and legal. It retrieves information from the table ‘Student’.



Your comments will be displayed only after manual approval.