PDF Database Programming With SQL Midterm 2019 - Compress
PDF Database Programming With SQL Midterm 2019 - Compress
Columns
Columns in a datab
database
ase table
table contain
contain data
data wi
with
th the same
same ________
_________:
_:
Type (*)
Row
Key
Field
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 (*)
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
|| (*)
+
9. To restrict the rows returned from an SQL Query, you should use the _____ clause:
SELECT
WHERE (*)
GROUP BY
CONDITION
All of the Above
12. You
You need to change the default sort order of the ORDER BY clause so that the data is displayed in
reverse alphabecal
alphabecal order
order.. Which keyword
keyword should
should you include in the ORDER BY
BY clause?
DESC (*)
ASC
CHANGE
SORT
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 (*)
SELECT SUBSTR(product_id, 3, 2)
FROM price
WHERE manufacturer_id = 59604; (*)
20.
20. Wh
Whic
ich
h sta
state
teme
ment
nt abo
about
ut g
grrou
oup
p func
funco
ons
ns is tru
true?
e?
COALESCE, but not NVL and NVL2, can be used with group funcons to replace null
values.
NVL and NVL2, but not COALESCE, can be used with group funcons to replace null
values.
NVL and COALESCE, but not NVL2, can be used with group funcons to replace null
values.
NVL, NVL2, and COALESCE can be used with group funcons to replace null values. (*)
22. Which statement will return a lisng of last names, salaries, and a rang 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) qualied_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) qualied_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) qualied_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) qualied_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 funcon 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?
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 dening 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 (*)
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?
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?
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
funcon will you use?
MAX
COUNT
VARIANCE
SUM (*)
39. If you want to include subtotals and grand totals for all columns menoned 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 funcons including AVG, SUM, MIN, MAX, and COUNT.
COUNT. True or
False?
True (*)
False
41. The ___________ operator returns all rows from both tables, aer eliminang 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 informaon 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 funcon 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 funcons
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
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
FROM (SELECT AVG(cost) FROM manufacturers)
WHERE cost > AVG(cost);
48. Group funcons can be used in subqueries even though they may return many rows. True or False?
True (*)
False