likeopensource
Programmer
I am getting a little bugged , I got stuck on a similar problem twice.We have two tables lets say m_auc and d_auc
m_auc has (at least) the following columns
auction id, auction bidder id , auction price , bid_id.
auction_id,auction bidder_id and bid id form a composite key.
Another table has auction id and auction name.
After the auction process is finished , we have to pick the 3rd highest bidder and 5th highest bidder.
Even without the join, I am finding it difficult to get the 3rd highest and 5th highest bidders.Any solution in mysql,sql server,oracle or postgresql will be appreciated.
m_auc has (at least) the following columns
auction id, auction bidder id , auction price , bid_id.
auction_id,auction bidder_id and bid id form a composite key.
Another table has auction id and auction name.
After the auction process is finished , we have to pick the 3rd highest bidder and 5th highest bidder.
Even without the join, I am finding it difficult to get the 3rd highest and 5th highest bidders.Any solution in mysql,sql server,oracle or postgresql will be appreciated.