Question 121

View the Exhibit and examine the data in the PRODUCTS table. (Choose the best answer.)

You must display product names from the PRODUCTS table that belong to the
'Software/other' category with minimum prices as either $2000 or $4000 and with no unit of measure.
You issue this query:
SQL > SELECT prod_name, prod_category, prod_min_price FROM products
Where prod_category LIKE '%Other%' AND (prod_min_price = 2000 OR prod_min_price
4000) AND prod_unit_of_measure <> ' ';
Which statement is true?
  • Question 122

    Which two true about a sql statement using SET operations such as UNION?
  • Question 123

    View the exhibit and examine the description of the DEPARTMENTSand EMPLOYEEStables.

    The retrieve data for all the employees for their EMPLOYEE_ID, FIRST_NAME, and DEPARTMENT NAME, the following SQL statement was written:
    SELECT employee_id, first_name, department_name
    FROM employees
    NATURAL JOIN departments;
    The desired output is not obtained after executing the above SQL statement. What could be the reason for this?
  • Question 124

    Which two queries will result in an error?
  • Question 125

    View the Exhibit and examine the structure of ORDERS and CUSTOMERS tables. (Choose the best answer.)

    You executed this UPDATE statement:

    Which statement is true regarding the execution?