From the following table, write a SQL query to find the employees who works at depart 47 or 63. Return emp_idno, emp_fname, emp_lname, and emp_dept.
SELECT * FROM emp_details WHERE emp_dept = 47 OR emp_dept = 63;
Output of the Query:
emp_idno emp_fname emp_lname emp_dept 526689 Carlos Snares 63 328717 Jhon Snares 63 444527 Joseph Dosni 47 659831 Zanifer Emily 47 748681 Henrey Gabriel 47 733843 Mario Saule 63
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output of the Query:
need an explanation for this answer? contact us directly to get an explanation for this answer