Multiple choice technology databases

Which of the following is not allowed while creating a table using CRRATE TABLE in SQL?

  1. Table name can be an oracle reserved word

  2. Table names must begin with a letter

  3. Table names can contain in it numbers also

  4. None of the Above

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

When creating tables in SQL using CREATE TABLE, table names should not be reserved words as this causes parsing errors. While you can sometimes use quoted identifiers to bypass this, best practice is to avoid reserved words entirely. Table names must begin with a letter.