Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
One thing you've got to watch is that there might be another guy the same age as Tom, but on a lower salary. So I would suggest, (we'll call the table "wages"):
select * from wages
where age =
(select MIN(age) from wages
where salary = (select MAX(salary) from wages))
AND salary = (select MAX(salary) from wages)
or alternatively to avoid having to do the max salary select twice:
declare @maxsalary INT
select @maxsalary = MAX(salary) from wages
select * from wages
where age = (select MIN(age) from wages where salary = @maxsalary)
AND salary = @maxsalary
SELECT wages.*
FROM Wages,(select max(wage) as sal from wages ) as FF
WHERE wages.age = (select min(age) from wages where wage= [FF].[Sal])
and Wages.wage = [FF].[sal]
wow! I actually wrote something that works!
McCoy: "Medical men are trained in logic." Spock: "Trained? Judging from you, I would have guessed it was trial and error."
Comment