Which four are types of functions available in SQL? (Choose 4)
Which two statements are true about WHERE and HAVING clauses? (Choose two)
EMPLOYEES and DEPARTMENTS data:EMPLOYEES -DEPARTMENTS -On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID managers and refers to the EMPLOYEE_ID.On the DEPARTMENTS table DEPARTMENT_ID is the primary key.Evaluate this UPDATE statement.UPDATE employees -SET mgr_id =(SELECT mgr_idFROMemployees -WHERE dept_id=(SELECT department_idFROM departments -WHERE department_name = 'Administration')),Salary = (SELECT salary -FROM employees -WHERE emp_name = 'Smith')WHERE job_id = 'IT_ADMIN';What happens when the statement is executed?
Examine the structure of the EMPLOYEES and NEW_EMPLOYEES tables:Which MERGE statement is valid?
Which SQL statement accepts user input for the columns to be displayed, the table name, and WHERE condition?
Evaluate the SQL statement:TRUNCATE TABLE DEPT;Which three are true about the SQL statement? (Choose three.)