Evaluate the SQL statement: SELECT ROUND(45.953, -1), TRUNC(45.936, 2) FROM dual; Which values are displayed? ()
A. 46 and 45 B. 46 and 45.93 C. 50 and 45.93 D. 50 and 45.9 E. 45 and 45.93 F. 45.95 and 45.93
A. SELECT &1, "&2" FROM &3 WHERE last_name = '&8'; B. SELECT &1, '&2' FROM &3 WHERE '& last_name = '&8'; C. SELECT &1, &2 FROM &3 WHERE last_name = '&8'; D. SELECT &1, '&2' FROM EMP WHERE last_name = '&8';
A. A WHERE clause can be used to restrict both rows and groups. B. A WHERE clause can be used to restrict rows only. C. A HAVING clause can be used to restrict both rows and groups. D. A HAVING clause can be used to restrict groups only. E. A WHERE clause CANNOT be used in a query of the query uses a HAVING clause. F. A HAVING clause CANNOT be used in subqueries.