Question 276

View the Exhibit and examine the structure of the CUSTOMERS and CUST_HISTORY tables.

The CUSTOMERS table contains the current location of all currently active customers.
The CUST_HISTORY table stores historical details relating to any changes in the location of all current as well as previous customers who are no longer active with the company.
You need to find those customers who have never changed their address.
Which SET operator would you use to get the required output?
  • Question 277

    You must display details of all users whose username contains the string 'ch_'. (Choose the best answer.) Which query generates the required output?
  • Question 278

    View the Exhibit and examine the details of the PRODUCT_INFORMATION table.

    You have the requirement to display PRODUCT_NAME and LIST_PRICE from the table where the CATEGORYJD column has values 12 or 13, and the SUPPLIER_ID column has the value 102088. You executed the following SQL statement:
    SELECT product_name, list_price FROM product_information WHERE (category_id = 12 AND category_id = 13) AND supplier_id = 102088;
    Which statement is true regarding the execution of the query?
  • Question 279

    Examine these statements:
    CREATE TABLE alter_test (c1 VARCHAR2 (10) , c2 NUMBER (10);
    INSERT INTO alter-test VALUES ('123', 123);
    Which is true about modifying the columns in Alter_TEST?
    Which is true about modifying the columns in ALTER_TEST?
  • Question 280

    Examine the structure of the PROGRAMS table:

    Which two SQL statements would execute successfully?