1Z0-007 · Question #104
Which is a valid CREATE TABLE statement?
The correct answer is A. CREATE TABLE EMP9$# AS (empid number(2)). Table names and column names must begin with a letter and be 1-30 characters long. Characters A-Z,a-z, 0-9, _, $ and # (legal characters but their use is discouraged). Incorrect answer: B Non alphanumeric character such as "*" is discourage in Oracle table name. D Table name…
Question
Which is a valid CREATE TABLE statement?
Options
- ACREATE TABLE EMP9$# AS (empid number(2));
- BCREATE TABLE EMP*123 AS (empid number(2));
- CCREATE TABLE PACKAGE AS (packid number(2));
- DCREATE TABLE 1EMP_TEST AS (empid number(2));
How the community answered
(23 responses)- A83% (19)
- B4% (1)
- C4% (1)
- D9% (2)
Explanation
Table names and column names must begin with a letter and be 1-30 characters long. Characters A-Z,a-z, 0-9, _, $ and # (legal characters but their use is discouraged). Incorrect answer: B Non alphanumeric character such as "*" is discourage in Oracle table name. D Table name must begin with a letter.
Topics
Community Discussion
No community discussion yet for this question.