Thanks alot John, that's was just what I needed.
[quoted text, click to view] John Gilson wrote:
> "nubee" <nospan@please.org> wrote in message news:3EC976AC.2C4B4E16@please.org...
> > I have a table with first_name, last_name, salary, other_columns. I can
> > produce sql to print the max salary but only with the salary column. How
> > do I get first_name and last_name etc to show with the max(salary).
> >
> > Thanks
> >
> >
>
> SELECT *
> FROM T
> WHERE salary = (SELECT MAX(salary) FROM T)
>
> Regards,
> jag