Computer Science, asked by arenrox, 7 months ago

Write SQL statement that gives the same output as the following SQL

statement but uses “IN” keyword.

SELECT ENAME FROM EMPL WHERE JOB = “CLERK” ;​

Answers

Answered by rohitkhajuria90
0

SELECT ENAME

FROM EMPL

WHERE JOB IN ('CLERK') ;

Similar questions