databases Online Quiz - 116
Description: databases Online Quiz - 116 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
Which character is used to continue a statement in SQL*Plus?
Assuming today is Monday, 10 July 2000, what is returned by this statement: SELECT to_char(NEXT_DAY(sysdate, 'MONDAY'), 'DD-MON-RR') FROM dual;
SELECT NULLIF('testing','testing') FROM DUAL ;
SELECT NULLIF(NULL,'testing') FROM DUAL ;
SELECT NVL2(null,'second','third') FROM DUAL ;
SELECT NVL2('first','second','testing') FROM DUAL ;
SELECT NVL(null,'testing') FROM DUAL ;
select decode('a','b','value-b','d','value-d','a','value-a','NA') result from dual;
What is true about subqueries ?
What is true about an equijoin?
What type of object privileges can be granted on a view?
Two reasons to create table alias :
When the full outer join is used?
Which constraint can only be applied at the column level?
What is true about WHERE clause ?
What is true about the Truncate statement?
WHat is not true about the constaints ?
Once a sequence is created
PRODUCT ======= Product ID Product Description Manufacturer ID MANUFACTURER ============ Manufacturer ID Manufacturer Name Referring to the above table, what type of relationship exists between the Product table and the Manufacturer table?
You are writing a database application to run on your DBMS. You do not want your users to be able to view the underlying table structures. At the same time you want to allow certain update operations. Referring to the above scenario, what structure will you deploy?