databases Online Quiz - 56
Description: databases Online Quiz - 56 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
Which of the following port is used only in unconnected look up not in connected look up?
We can use the joiner in case of?
In which of the transformation we can discard duplicate data?
Which is not true regarding unconnected lookup?
What does a power center domain require,at a minimum?
Why is it best to use shortcuts to a common directory for source and target definition objects?
Null value in SQL represent?
A employee table contain below values empno empname deptno salary 1 aaa 10 30000 2 bbb 20 25000 3 ccc 10 Null 4 ddd Null 35000 select count(deptno) from employee?
Can an Integrity Constraint be enforced on a table if some existing table data does not satisfy
Examine the structure of the EMPLOYEES and DEPARTMENTS tables: Evaluate this SQL statement: SELECT employee_id, e.department_id, department_name, salary FROM employees e, departments d WHERE e.department_id = d.department_id; Which SQL statement is equivalent to the above SQL statement?