Anouar Seljouki
Anouar Seljouki

Reputation: 55

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;

Upvotes: 0

Views: 78

Answers (1)

GMB
GMB

Reputation: 222722

Is this what you want?

SELECT employee_id, salary FROM employees;

Upvotes: 1

Related Questions