Lab CSE311.1 Problems

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Lab CSE311.

1 Problems

Activity 3

SELECT e.Last_Name, e.Job_Id, e.Hire_Date FROM emps e WHERE e.Hire_Date BETWEEN '20-02-1998' AND '01-05-1998'
ORDER BY Hire_date ASC

Activity 5

SELECT e.Last_Name e.Hire_Date from emps e WHERE e.Hire_Date BETWEEN '1993-12-31' AND '1995-01-01'

Activity 6

SELECT e.Last_Name, e.Salary , e.Commission_pct from emps e where e.Commission_pct<>NULL


ORDER BY e.Salary AND e.Commission_pct

You might also like