From the following table, write a SQL query to find the details of all employees whose last name is ‘Dosni’ or ‘Mardy’. Return emp_idno, emp_fname, emp_lname, and emp_dept.
SELECT * FROM emp_details WHERE emp_lname ='Dosni' OR emp_lname= 'Mardy';
Output of the Query:
emp_idno emp_fname emp_lname emp_dept 444527 Joseph Dosni 47 539569 George Mardy 27
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