Multiple choice technology databases

Which of the following statements about an SQL statement are not correct?

  1. SQL statements are not case-sensitive, unless indicated.

  2. Keywords can be abbreviated.

  3. SQL statements can be on one or more lines.

  4. Keywords cannot be split across lines.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SQL keywords cannot be abbreviated - they must be written in full (SELECT, FROM, WHERE, etc.). This is what makes statement B incorrect, and since the question asks which statement is 'not correct', B is the right choice. SQL statements are indeed case-insensitive unless the database is configured otherwise, can span multiple lines, and keywords cannot be split across lines.