Question 231

You must create a SALES table with these column specifications and data types: (Choose the best answer.) SALESID: Number
STOREID: Number
ITEMID: Number
QTY: Number, should be set to 1 when no value is specified
SLSDATE: Date, should be set to current date when no value is specified PAYMENT: Characters up to 30 characters, should be set to CASH when no value is specified Which statement would create the table?
  • Question 232

    Which three statements are true about performing DML operations on a view with no INSTEAD OF triggers defined?
  • Question 233

    Which three statements are true about GLOBAL TEMPORARY TABLES?
  • Question 234

    You issued this command:

    Which three statements are true? (Choose three.)
  • Question 235

    Examine the structure of the EMPLOYEEStable.

    There is a parent/child relationship between EMPLOYEE_IDand MANAGER_ID.
    You want to display the last names and manager IDs of employees who work for the same manager as the employee whose EMPLOYEE_IDis 123.
    Which query provides the correct output?