Reputation: 55
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
Reputation: 222722
Is this what you want?
SELECT employee_id, salary FROM employees;
Upvotes: 1