The EMPLOYEES table contains these columns:EMPLOYEE_ID NUMBER(4)LAST_NAME VARCHAR2 (25)JOB_ID VARCHAR2(10)You want to search for strings that contain 'SA_' in the JOB_ID column. Which SQL statement do you use?
See the Exhibit and examine the structure of ORD table:Exhibit:Evaluate the following SQL statements that are executed in a user session in the specified order:CREATE SEQUENCE ord_seq;SELECT ord_seq.nextval -FROM dual;INSERT INTO ord -VALUES (ord_seq.CURRVAL, 25-jan-2007, 101);UPDATE ord -SET ord_no= ord_seq.NEXTVAL -WHERE cust_id =101;What would be the outcome of the above statements?
Examine the structure of the EMPLOYEES and NEW_EMPLOYEES tables:Which MERGE statement is valid?
Which three SQL statements would display the value 1890.55 as $1, 890.55?
Which two statements are true about constraints? (Choose two.)
Evaluate the following SQL statement:Which statement is true regarding the outcome of the above query?