Brandon Gagon
Quiz by , created more than 1 year ago

Basic SQL

115
0
0
No tags specified
Brandon Gagon
Created by Brandon Gagon about 6 years ago
Close

Basic SQL

Question 1 of 17

1

The SQL command that enables you to make changes in the data is ____.

Select one of the following:

  • INSERT

  • SELECT

  • COMMIT

  • UPDATE

Explanation

Question 2 of 17

1

To list all the contents of the PRODUCT table, you would use ____.

Select one of the following:

  • LIST * FROM PRODUCT

  • SELECT * FROM PRODUCT

  • DISPLAY * FROM PRODUCT

  • SELECT ALL FROM PRODUCT

Explanation

Question 3 of 17

1

Which command would you use when making corrections to the PRODUCT table?

Select one of the following:

  • CHANGE PRODUCT
    SET P_INDATE = '01/18/2004'
    WHERE P_CODE = '13-Q2/P2';

  • ROLLBACK PRODUCT
    SET P_INDATE = '01/18/2004'
    WHERE P_CODE = '13-Q2/P2';

  • EDIT PRODUCT
    SET P_INDATE = '01/18/2004'
    WHERE P_CODE = '13-Q2/P2';

  • UPDATE PRODUCT
    SET P_INDATE = '01/18/2004'
    WHERE P_CODE = '13-Q2/P2';

Explanation

Question 4 of 17

1

Which command is used to select partial table contents?

Select one of the following:

  • SELECT <column(s)>
    FROM <Table name>
    WHERE <Item>;

  • LIST <column(s)>
    FROM <Table name>
    WHERE <Conditions>;

  • SELECT <column(s)>
    FROM <Table name>
    WHERE <Conditions>;

  • LIST<column(s)>
    FROM <Table name>
    WHERE <Item>;

Explanation

Question 5 of 17

1

Which query will output the table contents when the value of V_CODE is less than or equal to 21344?

Select one of the following:

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE <> 21344;

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE <=21344;

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE => 21344;

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE = 21344;

Explanation

Question 6 of 17

1

What is the SQL syntax requirement to list the table contents for either V_CODE = 21344 or V_CODE = 24288?

Select one of the following:

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE = 21344
    OR V_CODE <= 24288

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE = 21344
    OR V_CODE => 24288

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE = 21344
    OR V_CODE > 24288

  • SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE
    FROM PRODUCT
    WHERE V_CODE = 21344
    OR V_CODE = 24288

Explanation

Question 7 of 17

1

What is the command used to list the P_CODE, P_DESCRIPT, P_INDATE, and P_PRICE fields from the Product table in ascending order by P_PRICE?

Select one of the following:

  • SELECT P_CODE, P_DESCRIPT, P_INDATE, P_PRICE
    FROM PRODUCT
    SEQUENCE BY P_PRICE;

  • SELECT P_CODE, P_DESCRIPT, P_INDATE, P_PRICE
    FROM PRODUCT
    LIST BY P_PRICE;

  • SELECT P_CODE, P_DESCRIPT, P_INDATE, P_PRICE
    FROM PRODUCT
    ORDER BY P_PRICE;

  • SELECT P_CODE, P_DESCRIPT, P_INDATE, P_PRICE
    FROM PRODUCT
    ASCENDING BY P_PRICE;

Explanation

Question 8 of 17

1

The basic SQL aggregate function that gives the number of rows containing not null values for the given column is ____.

Select one of the following:

  • COUNT

  • MIN

  • MAX

  • SUM

Explanation

Question 9 of 17

1

What is the command to join the P_DESCRIPT and P_PRICE fields from the PRODUCT table and the V_NAME, V_AREACODE, V_PHONE, and V_CONTACT fields from the VENDOR table where the value of V_CODE match?

Select one of the following:

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE <> VENDOR.V_CODE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE = VENDOR.V_CODE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE <= VENDOR.V_CODE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE => VENDOR.V_CODE;

Explanation

Question 10 of 17

1

What is the command to join the P_DESCRIPT and P_PRICE fields from the PRODUCT table and the V_NAME, V_AREACODE, V_PHONE and V_CONTACT fields from the VENDOR table, where the value of V_CODE match and the output is ordered by the Price?

Select one of the following:

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE <> VENDOR.V_CODE;
    ORDER BY P_PRICE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE => VENDOR.V_CODE;
    ORDER BY P_PRICE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE <= VENDOR.V_CODE;
    ORDER BY P_PRICE;

  • SELECT P_DESCRIPT, P_PRICE, V_NAME, V_CONTACT, V_AREACODE, V_PHONE
    FROM PRODUCT, VENDOR
    WHERE PRODUCT.V_CODE = VENDOR.V_CODE;
    ORDER BY P_PRICE;

Explanation

Question 11 of 17

1

To delete a row from the PRODUCT table, use the ____ command.

Select one of the following:

  • KILL

  • DELETE

  • COMMIT

  • ERASE

Explanation

Question 12 of 17

1

ANSI-standard SQL allows the use of special operators in conjunction with the WHERE clause. A special operator used to check whether an attribute value is null is ____.

Select one of the following:

  • BETWEEN

  • IS NULL

  • LIKE

  • IN

Explanation

Question 13 of 17

1

The ____ command is used to modify the table by deleting a column.

Select one of the following:

  • DROP

  • ALTER

  • DELETE

  • ERASE

Explanation

Question 14 of 17

1

The ____ function is used to find the highest value in a table column.

Select one of the following:

  • MAX

  • TOTAL

  • SUM

  • TOP

Explanation

Question 15 of 17

1

UPDATE tablename
*****
[WHERE conditionlist];
What command replaces the ***** in the above statement?

Select one of the following:

  • SET columnname = expression

  • columnname = expression

  • expression = columnname

  • LET columnname = expression

Explanation

Question 16 of 17

1

If you wish to perform an inner join based on only one common attribute, you might use the ____ clause.

Select one of the following:

  • OF

  • USING

  • HAS

  • JOIN ON

Explanation

Question 17 of 17

1

In a subquery, which query is executed first?

Select one of the following:

  • Leftmost

  • Rightmost

  • Innermost

  • Outermost

Explanation