databases Online Quiz - 226
Description: databases Online Quiz - 226 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
Which section of a PL/SQL block commences with the BEGIN keyword?
Evaluate the SQL statement: SELECT LPAD(salary,10,*) FROM EMP WHERE EMP_ID = 1001; If the employee with the EMP_ID 1001 has a salary of 17000, what is displayed?
There are also multiple-column subqueries: Queries that return more than one column from the inner SELECT statement.(T/F)
What is the output in RR format for following dates Date Specified :27-Oct-1995
The outer and inner queries can get data from different tables?
What will be the output of following Select 8 from Emp ? Emp table has 10 rows
Can we abbreviate keywords across lines?e.g. DESCRIBE
Is Century Information is recorded when Oracle data base stores the DATE internally into a table?
What is the correct use of the Trunc command on a date?
Which type of join should be written to perform an outer join of tables A and B that returns all rows from B?
How many join conditions should be there to avoid a Cartesian Join for joining three tables?
Examine the code given below: SELECT employee_id FROM employees WHERE commission_pct=.5 OR salary > 23000 Which of the following statement is correct with regard to this code?
Which of the following tasks can be performed by using the TO_CHAR function?
Which of the following SELECT statements will get the result 'elloworld' from the string 'HelloWorld'?
Where is the GROUP BY clause statement placed in a SELECT statement that includes a WHERE clause?
Evaluate the following SQL statement: SELECT ROUND (TRUNC (MOD (1600, 10),-1), 2) FROM dual; What will be displayed?