Viewing 6 posts - 1 through 7 (of 7 total)
The "root" of my problem is the assignment itself. It specifically states to use GROUP BY statements to accomplish the scenarios which in turn has me TOTALLY confused!! ...
March 24, 2009 at 8:12 am
Drop table Employees;
Drop table Job;
CREATE TABLE Job (
EEO_Classification VARCHAR(60) NOT NULL, ...
March 24, 2009 at 7:51 am
I think I figured this one out!!
Select Last_name,Salary,EE01_Classification
FROM Employees
WHERE Salary IN (SELECT Salary
FROM Employees
GROUP BY EE01_Classification,Salary)
ORDER BY EE01_Classification;
It seems to work....
Now on to the next one...GROUP BY with multiple tables...uggghhhhhh
Thanks...
March 24, 2009 at 7:03 am
I thought that too but I am taking a SQL Server class and the assignment specifically says to:
Write a SQL query that uses UNION of the two...
March 17, 2009 at 11:46 am
Sorry about that...it's not erroring out..it's only printing out the last_name and not giving me the job description from the job title. I suspect something to do with the...
March 17, 2009 at 11:39 am
You've got to be kidding me!!! I've gone over this thing with a magnifying glass and it was something that simple.....
Thanks man, I appreciate it!!
Michael
March 11, 2009 at 10:56 am
Viewing 6 posts - 1 through 7 (of 7 total)