KPoggensee
Programmer
Say I have a SQL statement something like:
Select Max(Col1), Max(Col2), Max(Col3) From Table1
The results are;
Col1 Col2 Col3
3 8 5
I would like to return the Max of these columns so the only return is 8.
Any Suggestions?
Ken
Select Max(Col1), Max(Col2), Max(Col3) From Table1
The results are;
Col1 Col2 Col3
3 8 5
I would like to return the Max of these columns so the only return is 8.
Any Suggestions?
Ken