Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 567 Bytes

0691.md

File metadata and controls

19 lines (15 loc) · 567 Bytes

What happens when you run the following MySQL Query ?

CREATE TABLE PRIMARY (ID int);
  • A) Syntax Error - PRIMARY is reserved in MySQL and should be quoted to be used as a table name
  • B) Syntax Error - PRIMARY is reserved in MySQL and can not be used as a table name
  • C) A table called PRIMARY containing a column called ID is created
  • D) false
Answer

Answer: A