You create a table named 123.
Which statement runs successfully?
Which three actions can you perform on an existing table containing date?
Examine the description of the EMPLOYEES table:

Which two queries return the highest salary in the table?
You must find the number of employees whose salary is lower than employee 110.
Which statement fails to do this?
Which statement falls to execute successfully?
Whith three statements are true about built in data types?
Examine this partial command:
CREATE TABLE cust(
cust_id NUMBER(2),
credit_limit NUMBER(10)
ORGANIZATION EXTERNAL
Which two clauses are required for this command to execute successfully?
Which three are true about granting object privileges on tables, views, and sequences?
Examine this statement:
CREATE TABTE orders
(sarial_no NUMBER UNIQUE,
order_id NUMBER PRIMARY KEY ,
order_date DATE NOT NULL,
status VARCHAR2 (10) CHECK (status IN ('CREDIT', 'CASH')),
product_id NUMBER REFERENCES products (product_id),
order_ total NUMBER);
On which two columns of the table will an index be created automatically?
In the PROMOTIONS table, the PROMO_ BEGIN_DATE column is of data type and the default date format is DD-MON-RR
Which two statements are true about expressions using PROMO_ BEGIN_DATE in a query?