<<< Previous question <<< Question ID#0691.md >>> Next question >>>
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