Database Programming With SQL 2-3: Comparison Operators Practice Activities
Database Programming With SQL 2-3: Comparison Operators Practice Activities
com
• Demonstrate proper use of BETWEEN, IN, and LIKE conditions to return a desired result
• Distinguish between zero and the value of NULL as unavailable, unassigned, unknown, or in
applicable
Vocabulary
Identify the vocabulary word for each definition below.
ESCAPE This option identifies that the escape characters should be
interpreted literally
inclusive Including the specified limits and the area between them; the
numbers 1-10, inclusive
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their
respective owners.
2
Try It / Solve It
1. Display the first name, last name, and salary of all Global Fast Foods staff whose salary is
between $5.00 and $10.00 per hour.
2. Display the location type and comments for all DJs on Demand venues that are Private
Home.
3. Using only the less than, equal, or greater than operators, rewrite the following query:
6. Select all the Oracle database employees whose last names end with “s”. Change the
heading of the column to read Possible Candidates.
7. Which statement(s) are valid?
a. WHERE quantity <> NULL;
8. Write a SQL statement that lists the songs in the DJs on Demand inventory that are type
code 77, 12, or 1.
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their
respective owners.