Q1. Please write SQL codes to query data from member tables based on below criteria Please write a SELECT statement to display each member data that street must NOT be ‘STREET’ and ‘LANE’, and valid_date CANNOT be ‘FEB’, ‘APR’, and ‘JUN’. Please display the result in descending order of the last_name. The result should be identical to below results: [SCREENSHOT] I try to use this, but it gives me this error: SELECT MEMBER_ID, FIRST_NAME, LAST_NAME, STREET, FORMAT(VALID_DATE, 'dd-MM--yy') FROM MEMBER WHERE STREET NOT IN ('STREET', 'LANE') AND MONTH(VALID_DATE) NOT IN (2, 4, 6) ORDER BY LAST_NAME DESC; ====== error ===== ORA-00904: "MONTH": invalid identifier ORA-00904: "FORMAT": invalid identifier
Q1. Please write SQL codes to query data from member tables based on below criteria
Please write a SELECT statement to display each member data that street must NOT be ‘STREET’ and ‘LANE’, and valid_date CANNOT be ‘FEB’, ‘APR’, and ‘JUN’. Please display the result in descending order of the last_name. The result should be identical to below results:
[SCREENSHOT]
I try to use this, but it gives me this error:
SELECT MEMBER_ID, FIRST_NAME, LAST_NAME, STREET, FORMAT(VALID_DATE, 'dd-MM--yy')
FROM MEMBER
WHERE STREET NOT IN ('STREET', 'LANE')
AND MONTH(VALID_DATE) NOT IN (2, 4, 6)
ORDER BY LAST_NAME DESC;
====== error =====
ORA-00904: "MONTH": invalid identifier
ORA-00904: "FORMAT": invalid identifier
Trending now
This is a popular solution!
Step by step
Solved in 2 steps