Multiple choice technology programming languages

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 a table using CREATE TABLE in Oracle SQL, the table name cannot be a database reserved word (e.g., SELECT, TABLE). Table names must start with a letter and can contain numbers, making the reserved word restriction the only disallowed option listed.