0% found this document useful (0 votes)
67 views12 pages

PDF Database Programming With SQL Midterm 2019 - Compress

The document contains questions about SQL concepts and syntax. It covers topics like database columns, SELECT statements, operators, functions and clauses used to retrieve and manipulate data from database tables.

Uploaded by

Fadli Rahman
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
67 views12 pages

PDF Database Programming With SQL Midterm 2019 - Compress

The document contains questions about SQL concepts and syntax. It covers topics like database columns, SELECT statements, operators, functions and clauses used to retrieve and manipulate data from database tables.

Uploaded by

Fadli Rahman
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 12

1.

Columns
Columns in a datab
database
ase table
table contain
contain data
data wi
with
th the same
same ________
_________:
_:
 Type (*)
 Row
 Key
 Field

2. What command retrieves data from the database?



DESCRIBE
 SELECT (*)
 INSERT
 ALTER

3. All computers in the world speak the same languages, so you only need to learn one programming
programming
language - Oracle SQL. True or False?
 True
 False (*)

4. Evaluate this SELECT statement:


SELECT (salary * raise_percent) raise
FROM employees;
If the RAISE_PERCENT column only contains null values, what will the statement return?
 A null value or a zero depending on the value of the SALARY column
 Only zeroes
 A null value or a numeric value depending on the value of the SALARY column
 Only null values (*)

5. What would you use in the SELECT clause to return all the columns in the table?
 An asterisk (*) (*)
 A plus sign (+)
 The ALL keyword
keyword
 A minus sign (-)

6. You need to combine the FIRST_NAME and LAST_NAME columns in the EMPLOYEES table and display
the columns as a combined character string. Which operator should you use?
 |
 AND
 || (*)
 +

7. The following is a valid SQL SELECT statement. T


True
rue or False?
SELECT rst_name || ' ' || last_name alias AS Employee_Name
FROM employees:
 True
 False (*)
8. You want to retrieve a list of customers whose last names begin with the leers 'Fr' . Which symbol
should you include
include in the WHERE clause of your SELECT
SELECT statement
statement to achieve the desired result?
 *
 ~
 % (*)
 #

9. To restrict the rows returned from an SQL Query, you should use the _____ clause:
 SELECT
 WHERE (*)
 GROUP BY
 CONDITION
 All of the Above

10. The EMPLOYEES table contains these columns:


LAST_NAME VARCH
VARCHAR2(25)
AR2(25)
FIRST_NAME VARCHAR2(25)
VARCHAR2(25)
EMAIL VARCHAR2(50)
VARCHAR2(50)
You are wring a SELECT statement
statement to retrieve the names of employees that have an email address.
SELECT last_name||', '||rst_name "Employee Name"
FROM employees;
Which WHERE clause should you use to complete this statement?
WHERE email IS NULL;
WHERE email = NULL;
WHERE email != NULL;
WHERE email IS NOT NULL; (*)

11. If you write queries using the BETWEEN operator,


operator, it does not maer in what order you enter the
values, i.e. BETWEEN low value AND high value will give the same result as BETWEEN high value and low
value. True or False?
 True
 False (*)

12. You
You need to change the default sort order of the ORDER BY clause so that the data is displayed in
reverse alphabecal
alphabecal order
order.. Which keyword
keyword should
should you include in the ORDER BY
BY clause?
 DESC (*)
 ASC
 CHANGE
 SORT

13. The funcon COUNT is a single row funcon. True or False?


True
False (*)
14. What value will the following SQL statement return?
SELECT employee_id
FROM employees
WHERE employee_id BETWEEN 100 AND 150
OR employee_id IN(119, 175, 2 205)
05)
AND (employee_id
(employee_id BETWEEN 150 AND 200);
 100, 101, 102, 103, 104, 107, 124, 141, 142, 143, 144, 149 (*)

No rows will be returned
 200, 201, 202, 203, 204, 205, 206
 19

15. Evaluate this SELECT statemen


statement:t:
SELECT last_name, rst_name, salary
FROM employees;
How will the results of this query be sorted?
 The database will display the rows in whatever order it nds it in the database, so no
parcular order. (*)
 The results will be sorted ascending by LAST_NAME and FIRST_NAME only.
 The results will be sorted ascending by the LAST_NAME column only.only.
 The results will be sorted ascending by LAST_NAME, FIRST_NAME, and SALARYSALARY..

16. Round
Round and
and T
Trunc
runc ca
cannot
nnot be used
used on Date
Date datatype
datatypes.
s. True
True or False?
False?
 True
 False (*)

17. You issue this SQL statement:


SELECT ROUND (1282.248, -2) FROM dual;
What value does this statement
statement produce?
 1282.25
 1200
 1282
 1300 (*)

18. The PRICE table contains this data:


PROD
PRODUCUCT_
T_ID
ID MAMANUNUFFACTU
ACTURERER_
R_ID
ID
86950 59604
You query the database and return the value 95. Which script did you use?

SELECT SUBSTR(product_id, 3, 2)
FROM price
WHERE manufacturer_id = 59604; (*)

SELECT SUBSTR(product_id, -1, 3)


FROM price
WHERE manufacturer_id = 59604;
SELECT LENGTH(product_id,
LENGTH(product_id, 3, 2)
FROM price
WHERE manufacturer_id = 59604;

SELECT TRIM(product_id, -3, 2)


FROM price
WHERE manufacturer_id = 59604;

19. What does the following SQL SELECT statemen


statementt return?
SELECT UPPER( SUBSTR('Databas
SUBSTR('Databasee Programming', INSTR('Database Programming','P'),20))
Programming','P'),20))
FROM dual;
 Database
 PROGRAMMING (*)
 DATABASE
 Programming

20.
20. Wh
Whic
ich
h sta
state
teme
ment
nt abo
about
ut g
grrou
oup
p func
funco
ons
ns is tru
true?
e?
 COALESCE, but not NVL and NVL2, can be used with group funcons to replace null
values.
 NVL and NVL2, but not COALESCE, can be used with group funcons to replace null
values.
 NVL and COALESCE, but not NVL2, can be used with group funcons to replace null
values.
 NVL, NVL2, and COALESCE can be used with group funcons to replace null values. (*)

21. The STYLES table contains this data:

Evaluate this SELECT statement:

SELECT style_id, style_name, category


category,, cost
FROM styles
WHERE style_name LIKE 'SANDAL' AND NVL(cost, 0) < 15.00
ORDER BY category, cost;

Which result will the query provide?


STYLE_ID STYLE_NAME CATEGORY COST
968950 SANDAL 85909 10.00
895840 SANDAL 85940 12.00
758960 SANDAL 86979

22. Which statement will return a lisng of last names, salaries, and a rang of 'Low', 'Medium', 'Good'
or 'Exc
'Excel
elle
lent
nt'' dep
depen
endi
ding
ng on th
the
e sala
salary
ry valu
value?
e?

SELECT last_name,salary,
(RATING WHEN salary<5000 THEN 'Low'
WHEN salary<10000 THEN 'Medium'
WHEN salary<20000 THEN 'Good'
ELSE 'Excellent'
END) qualied_salary
FROM employees;

SELECT last_name,salary,
(CASE WHEN salary<5000 THEN 'Low'
WHEN salary<10000 THEN 'Medium'
WHEN salary<20000 THEN 'Good'
ELSE 'Excellent'
END) qualied_salary
FROM employees; (*)

SELECT last_name,sal,
(CASE WHEN sal<5000 THEN 'Low'
WHEN sal<10000 THEN 'Medium'
WHEN sal<20000 THEN 'Good'
ELSE 'Excellent'
END) qualied_salary
FROM employees;

SELECT last_name,salary,
(CASE WHEN salary<5000 THEN 'Low'
WHEN sal <10000 THEN 'Medium'
WHEN sal <20000 THEN 'Good'
ELSE 'Excellent'
END) qualied_salary
FROM employees;

23. Which
Which SQL Stat
Statement
ement should
should you
you use to dis
displa
playy the prices in tthis
his fo
format
rmat:: "$00.30
"$00.30"?
"?
 SELECT TO_CHAR(price, '$99,999.99') FROM product;
 SELECT TO_NUMBER(price, '$99,900.99') FROM product;
 SELECT TO_CHAR(price, '$99,990.99') FROM product;
 SELECT TO_CHAR(price, '$99,900.99') FROM product; (*)
24. You need to display the HIRE_DATE
HIRE_DATE values in this format: 25th of July 2002. Which SELECT statement
would you use?
 SELECT TO_CHAR(hire_date,
TO_CHAR(hire_date, 'DDspth 'of' Month RRRR') FROM employees;

 SELECT TO_CHAR(hire_date,
TO_CHAR(hire_date, 'DDTH "of" Month YYYY') FROM employees;
 SELECT enroll_date(hire_date,
enroll_date(hire_date, 'DDspth "of" Month YYYY') FROM employees;
 SELECT TO_CHAR(hire_date,
TO_CHAR(hire_date, 'ddth "of" Month YYYY') FROM employees; (*)

25. All Human Resources data is stored in a table named EMPLOYEES. Y You
ou have been asked to create a
report that displays each employee's name and salary. Each employee's salary must be displayed
displayed in the
following
followin g format: $000,000.00. Which funcon should you include in a SELECT statement to achieve the
desired result?
 TO_NUMBER
 TO_DATE
 TO_CHAR (*)
 CHARTOROWID

26
26.. Whi
Which
ch SELEC
SELECT
T ssta
tate
teme
ment
nt impl
implem
emen
ents
ts a ssel
elff joi
join?
n?

SELECT e.employee_id, m.manager_id


FROM employees e, departments m
WHERE e.employee_id = m.manager_id;

SELECT e.employee_id, m.manager_id


FROM employees e, managers m
WHERE e.employee_id = m.manager_id;

SELECT e.employee_id, m.manager_id


FROM employees e, employees m
WHERE m.employee_id = e.manager_id; (*)

SELECT e.employee_id, m.manager_id


FROM employees e
NATURAL
NATURAL JOIN employees m;

27. Whi
Which
ch st
stat
ateme
ement
nt a
abou
boutt a sel
selff join
join is tru
true?
e?
 A self join must be implemented by dening a view.
 Table aliases must be used to qualify table names. (*)
 The NATURAL
NATURAL JOIN clause must be used.
 Table aliases cannot be used to qualify table names.

28. You
You need to join all the rows in the EMPLO
EMPLOYEES
YEES table to all the rows in the EMP_REFERENCE table.
Which
Whi ch type
type of
of jo
join
in should
should you
you ccrea
reate?
te?
 A full outer join
 A cross join (*)
 An inner join
 An equijoin
29. The join column must be included in the select statemen
statementt when you use the NATURAL
NATURAL JOIN clause.
True
rue or Fal
alse
se??
 True
 False (*)

30. You need to display all the rows (both matching and non-matching) from both the EMPLO
EMPLOYEE
YEE and
EMPLOYEE_HIST
EMPLOYEE_HIST tables. Which type of join would you use?
 A right outer join
 A le outer join
 An inner join
 A full outer join (*)

31. EMPLOYEES Table:

A query is needed to display each department and its manager name from the above tables. However
However,,
not all departments have a manager but we want departments returned in all cases. Which of the
following
followin g SQL: 1999 synta
syntaxx scripts will accomplish the task?

SELECT d.department_id, e.rst_name,


e.rst_name, e.last_name FROM employees
e mployees e
FULL OUTER JOIN departments d
ON (e.employee_id = d.manager_id);
SELECT d.department_id, e.rst_name,
e.rst_name, e.last_name FROM employees
e mployees e, departments d
WHERE e.employee_id
RIGHT OUTER JOIN d.manager_id;

SELECT d.department_id, e.rst_name,


e.rst_name, e.last_name FROM employees
e mployees e
LEFT OUTER JOIN departments d
WHERE (e.department_id = d.department_id);

SELECT d.department_id, e.rst_name,


e.rst_name, e.last_name FROM employees
e mployees e
RIGHT OUTER JOIN departments d
ON (e.employee_id = d.manager_id); (*)
32. The keywords JOIN _____________
_____________ should be used to join tables w
with
ith the same column names but
dierent da
datatypes.
 WHEN
 USING (*)
 NATURAL ON
 ON

33. Which statement about outer joins is true?


 The tables must be aliased.
 Outer joins are always evaluated before
before other types of joins in the query
query..
 The OR operator cannot be used to link outer join condions. (*)
 The FULL, RIGHT
RIGHT,, or LEFT keyword must be included.

34. You
You need to create a report that lists all employees in department 10 (Sales) whose salary is not
equal to $25,000 per year
year.. Which query should you issue to accomplish this task?

SELECT last_name, rst_name, salary


FROM employees
WHERE salary > 25000 AND dept_id = 10;

SELECT last_name, rst_name, salary


FROM employees
WHERE salary <= 25000 AND dept_id = 10;

SELECT last_name, rst_name, salary


FROM employees
WHERE salary != 25000 AND dept_id = 10; (*)

SELECT last_name, rst_name, salary


FROM employees
WHERE salary = 25000 AND dept_id = 10;

35. What happens when you create a Cartesian product?


 The table is joined to another equal table
 All rows that do not match in the WHERE clause are displayed
 All rows from one table are joined to all rows of another table (*)
 The table is joined to itself,
itself, one column to the next column, exhausng all possibilies

36. Which
Which SELEC
SELECT
T statement
statement wil
willl calculat
calculate
e the number of rows
rows in the PRODUCT
PRODUCTSS table?
 SELECT COUNT FROM products;
 SELECT COUNT(products);
COUNT(products);
 SELECT ROWCOUNT FROM products;
 SELECT COUNT (*) FROM products; (*)
37. You
You need to compute the total salary amount for all employees in department 10. Which group
funcon will you use?
 MAX
 COUNT
 VARIANCE
 SUM (*)

38. Which group funcons below act on character


character,, number, and date data types? (Choose all that are
correct.)
 AVG
 SUM
 MAX (*)
 COUNT (*)
 MIN (*)

39. If you want to include subtotals and grand totals for all columns menoned in a GROUP BY clause,
you should use which of the following extensions to the GROUP BY clause?
 HAVING
 GROUP BY ALL COLUMNS
 CUBE (*)
 ROLLUP

40. CUBE can be applied to all aggregate funcons including AVG, SUM, MIN, MAX, and COUNT.
COUNT. True or
False?
 True (*)
 False

41. The ___________ operator returns all rows from both tables, aer eliminang duplicates.
 UNION (*)
 INTERSECT
 MINUS
 UNION ALL
42. You
You want to write a report that returns the average salary of all employees in the company
company,, sorted by
departments.
The EMPLOYEES table contains the following columns:
EMPLOYEES:
EMP_ID NUMBER(10) PRIMARY KEY
LNAME VARCHAR2(20)
VARCHAR2(20)
FNAME VARCHAR2(20)
VARCHAR2(20)
DEPT VAR
VARCHAR2(20)
CHAR2(20)
HIRE_DATE DATE
SALARY NUMBER(10)
Which SELECT statement will return the
t he informaon that you require?
 SELECT salary(AVG), dept FROM employees GROUP BY dept;
 SELECT dept, AVG(salary) FROM employees GROUP BY dept; (*)
 SELECT AVG salary FROM employees BY dept;
 SELECT AVG (salary) FROM employees BY dept;

43. What
What is the correct
correct order
order of cla
clauses
uses in a SELECT
SELECT stat
statement
ement?
?

SELECT
FROM
WHERE
GROUP BY
HAVING
ORDER BY (*)

SELECT
FROM
WHERE
HAVING
ORDER BY
GROUP BY

SELECT
FROM
HAVING
GROUP BY
WHERE
ORDER BY

SELECT
FROM
WHERE
ORDER BY
GROUP BY
HAVING
44. Is the following
following statement correct?
SELECT department_id, AVG(AVG(salary)
salary)
FROM employees;
 Yes
 No, because the AVG funcon cannot be used on the salary column
 No, because a GROUP BY department_id clause is needed (*)
 Yes, because the SELECT clause can contain both individual columns and group funcons

45. You
You need to display all the players whose salaries are greater than or equal to John Brown's salary
salary..
Whic
Wh ich
h ccom
ompa
pari
riso
sonn ope
opera
rato
torr shou
should
ld you
you u
use
se?
?
 =
 >= (*)
 >
 <=

46. Oracle allows you to write named subqueries in one single statement, as long as you start your
statement with the keyword WITH. True or False?
 True (*)
 False

47. Examine the structures of the PARTS and MANUFACTURERS tables:


PARTS:
PARTS_ID VARCHAR2(25) PK
PARTS_NAME VARCHAR2(50)
MANUFACTURERS_ID
MANUF ACTURERS_ID NUMBER
COST NUMBER(5,2)
PRICE NUMBER(5,2)

MANUFACTURERS:
ID NUMBER PK
NAME VARCHAR2(30)
LOCATION VARCHAR2(20)

Assume that the tables have been populated with data including 100 rows in the PART
PARTSS table, and 20
rows in the MANUFACTURERS
MANUFACTURERS table. Which SQL statement correctly uses a subquery?

SELECT parts_name, price, cost


FROM parts
WHERE manufacturers_id IN
(SELECT id
FROM manufacturer
manufacturerss m
JOIN parts p
ON (m.id = p.manufactu
p.manufacturers_id));
rers_id)); (*)
UPDATE parts SET price = price * 1.15
UPDATE
WHERE manufacturers_id =
(SELECT id
FROM manufacturer
manufacturerss
WHERE UPPER(locaon)
UPPER(loc aon) IN("ATLANT
IN("ATLANTA",
A", "BOSTON", "DALLAS
"DALLAS"));
"));

SELECT parts_name, price, cost


FROM parts
WHERE manufacturers_id !=
(SELECT id
FROM manufacturer
manufacturerss
WHERE LOWER(name) = 'cost plus');

SELECT parts_name
FROM (SELECT AVG(cost) FROM manufacturers)
WHERE cost > AVG(cost);

48. Group funcons can be used in subqueries even though they may return many rows. True or False?

 True (*)

False

49. Evaluate this SELECT statemen


statement:
t:

SELECT player_id, name


FROM players
WHERE team_id IN
(SELECT team_id
FROM teams
WHERE team_id > 300 AND salary_cap > 400000);

What would happen if the inner query returned a NULL value?


 A syntax error in the inner query would be returned.

A syntax error in the outer query would be returned.
 No rows would be returned by the outer query.
query. (*)
 All the rows in the PLAYER table would be returned by the outer query.

50. Single row subqueries may not include this operator:


operator:
 <>
 ALL (*)
 >
 =

You might also like