Skip to content
Advertisement

Oracle SQL – ORA-00936: missing expression

whats wrong about this code ? I am trying to display all data on Employee_ID & Salary column, nothing else. what am I doing wrong here ?

SELECT IN
    ('Employee_ID','salary')
FROM employees;

Advertisement

Answer

Is this what you want?

SELECT employee_id, salary FROM employees;
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement