Question: 1
Examine the SQL statement used to create the TRANSACTION table.
SQL > CREATE TABLE transaction
(trn_id char(2) primary key,
start_date date DEFAULT SYSDATE,
end_date date NOT NULL);
The value 'A1' does not exist for trn_id in this table.
Which SQL statement successfully inserts a row into the table with the default value for START_DATE?
Answer : C
Show Answer
Hide Answer
Question: 2
Which three SQL statements would display the value 1890.55 as $1,890.55? (Choose three.)
Question: 3
A subquery is called a single-row subquery when _______.
Question: 4
You must write a query that prompts users for column names and conditions every time it is executed.
The user must be prompted only once for the table name.
Which statement achieves those objectives?
Question: 5
Which three statements are true regarding single-row functions? (Choose three.)