I can use the select sql max function with no problems;
this is my code
then to output using asp
but how do I also select another cell data [in my case 'name'] from the same record?
would it be something like this....?;
thanks in advance
Omar.
this is my code
Code:
SELECT MAX(Bid_Amount) AS LargestBidAmount FROM Auction_1
Code:
Response.Write "<td class=""numbertd"">" & objRS("LargestBidAmount") & "</td>"
but how do I also select another cell data [in my case 'name'] from the same record?
would it be something like this....?;
Code:
SELECT Name, MAX(Bid_Amount) AS LargestBidAmount FROM Auction_1 UNION SELECT NAME From Auction_1
Omar.
Comment