Which query would give the required output?

You need to display the first names of all customers from the CUSTOMERS table that contain the
character ‘e’ and have the character ‘a’ in the second last position.
Which query would give the required output?

You need to display the first names of all customers from the CUSTOMERS table that contain the
character ‘e’ and have the character ‘a’ in the second last position.
Which query would give the required output?

A.
SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, ‘e’)<>0 AND
SUBSTR(cust_first_name, -2, 1)=’a’;

B.
SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, ‘e’)<>” AND
SUBSTR(cust_first_name, -2, 1)=’a’;

C.
SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, ‘e’)IS NOT NULL AND
SUBSTR(cust_first_name, 1,-2)=’a’;

D.
SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, ‘e’)<>0 AND
SUBSTR(cust_first_name, LENGTH(cust_first_name),-2)=’a’;



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Christine

Christine

Why D is incorrect ?

Christine

Christine

I’ve juste understood ( because -2 is number char of the string subtracted and it is not possible it to be negative )