You need to give the MANAGER role the ability to select from, insert into, and modify existing rows in the
STUDENT_GRADES table. Anyone given this MANAGER role should be able to pass those privileges on to
others.
Which statement accomplishes this?
The database administrator of your company created a public synonym called HR for the
HUMAN_RESOURCES table of the GENERAL schema, because many users frequently use this table. As a
user of the database, you created a table called HR in your schema. What happens when you execute this
query?
Management has asked you to calculate the value 12*salary* commission_pct for all the employees in the EMP
table. The EMP table contains these columns:
LAST NAME VARCNAR2(35) NOT NULL
SALARY NUMBER(9,2) NOT NULL
COMMISION_PCT NUMBER(4,2)
Which statement ensures that a value is displayed in the calculated columns for all employees?
You want to display the name and annual salary multiplied by the commission_pct for all employees. For
records that have a NULL commission_pct, a zero must be displayed against the calculated column.
Which SQL statement displays the desired results?
Examine the data from the ORDERS and CUSTOMERS table.
ORDERS
ORD_ID ORD_DATE CUST_ID ORD_TOTAL
100 12-JAN-2000 15 10000
09-MAR-
101 40 8000
09-MAR-
102 35 12500
15-MAR-
103 15 12000
104 25-JUN-2000 15 6000
105 18-JUL-2000 20 5000
106 18-JUL-2000 35 7000
107 21-JUL-2000 20 6500
04-AUG-
108 10 8000
CUSTOMERS
CUST_ID CUST_NAME CITY
10 Smith Los Angeles
15 Bob San Francisco
20 Martin Chicago
25 Mary New York
30 Rina Chicago
35 Smith New York
40 Linda New York
Which SQL statement retrieves the order ID, customer ID, and order total for the orders that are placed on the
same day that Martin places his orders?
You need to modify the STUDENTS table to add a primary key on the STUDENT_ID column. The table is
currently empty.
Which statement accomplishes this task?
1 SELECT a.emp_name, a.sal, a.dept_id, b.maxsal
2 FROM employees a,
3 (SELECT dept_id, MAX(sal) maxsal
4. FROM employees
5 GROUP BY dept_id) b
6 WHERE a.dept_id = b.dept_id
7 AND a. asl < b. maxsal;