I have to use a SELECT statement so as to access the Employee,Job Title, Vacation Hours, and Sick Hours information usingAdventureWorksDW2016CTP3 database. So far when I run this it is notworking.
Use AdventureworksDW2016CTP3
SELECT EMP_ID,
FIRST_NAME,
LAST_NAME,
JOB_TITLE,
VACCATION_HOURS,
SICK_HOURS
FROM EMPLOYEE
What am I doing wrong because I cannot continue on with the nexttwo parts of the assignment. Or what I have is wrong to begin with.Thank You
Solution