0% found this document useful (0 votes)
56 views

Basis Data Lanjut Comparison Operators Practice Solutions

Here are the solutions to the vocabulary questions: 1. ESCAPE - This option identifies that the escape characters should be in- terpreted literally 2. IS NULL - Condition tests for null values 3. BETWEEN - Displays rows based on a range of values 4. Inclusive - Including the specified limits and the area between them; the numbers 1-10, inclusive 5. LIKE - Selects rows that match a character pattern 6. IN - Tests for values in a specified list of values

Uploaded by

Flare
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views

Basis Data Lanjut Comparison Operators Practice Solutions

Here are the solutions to the vocabulary questions: 1. ESCAPE - This option identifies that the escape characters should be in- terpreted literally 2. IS NULL - Condition tests for null values 3. BETWEEN - Displays rows based on a range of values 4. Inclusive - Including the specified limits and the area between them; the numbers 1-10, inclusive 5. LIKE - Selects rows that match a character pattern 6. IN - Tests for values in a specified list of values

Uploaded by

Flare
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

BASIS DATA LANJUT

COMPARISON OPERATORS PRACTICE SOLUTIONS

Mata Kuliah : Basis Data Lanjutan


Dosen : Sirli Fahriah, S.Kom., M.Kom.

Disusun oleh
Nama : Rezha Setyo Atmojo
NIM : 3.34.19.3.22
Kelas : IK-2D

PROGRAM STUDI TEKNIK INFORMATIKA


JURUSAN TEKNIK ELEKTRO
POLITEKNIK NEGERI SEMARANG
2020
Vocabulary
Directions: Identify the vocabulary word for each definition below.

ESCAPE This option identifies that the escape characters should be in- terpreted
literally
IS NULL Condition tests for null values
BETWEEN Displays rows based on a range of values
Inclusive Including the specified limits and the area between them; the numbers 1-
10, inclusive
LIKE Selects rows that match a character pattern
IN Tests for values in a specified list of values

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.

Solution:
SELECT first_name, last_name, salary
FROM f_staffs
WHERE salary BETWEEN 5.00 and 10.00;

2. Display the location type and comments for all DJs on Demand venues that are
Private Home.

Solution:
SELECT loc_type,
comments FROM d_venues
WHERE loc_type = 'Private Home';
3. Using only the less than, equal, or greater than operators, rewrite the following query:

SELECT first_name, last_name


FROM f_staffs
WHERE salary BETWEEN 20.00 and 60.00;

Solution:
SELECT first_name, last_name
FROM f_staffs
WHERE salary >= 20 and salary <=60;

4. Create a list of all the DJs on Demand CD titles that have “a” as the second letter in the title.

Solution:
SELECT title
FROM d_cds
WHERE title LIKE '_a%';
5. Who are the partners of DJs on Demand who do not get an authorized expense amount?

Solution:
SELECT first_name, last_name
FROM d_partners
WHERE auth_expense_amt IS NULL;

6. Select all the Oracle database employees whose last names end with “s”. Change the heading
of the column to read Possible Candidates.

Solution:
SELECT last_name AS "Possible Candidates"
FROM employees
WHERE last_name LIKE '%s';
7. Which statement(s) are valid?
a. WHERE quantity <> NULL;
b. WHERE quantity = NULL;
c. WHERE quantity IS NULL;
d. WHERE quantity != NULL;

Solution:
c. WHERE quantity IS NULL;

8. Write a SQL statement that lists the songs in the DJs on Demand inventory that are type code
77, 12, or 1.

Solution:
SELECT title
FROM d_songs
WHERE type_code IN ( 77,12,1);

You might also like