As you can see this is not correct. I want "job" to be grouped together with it's highest bid amount.
The following should be listed by relevance and bid.
Can anyone help refine this search, please
Daniel Team Member
Joined: 06 Jan 2002
Posts: 2564
Posted:
Sun Sep 21, 2003 6:12 pm (22 years ago)
Are you looking for something like
Code:
SELECT * from ppc_keywords WHERE keywords LIKE "%job%" GROUP BY keywords ORDER BY bid
Sorry if that's not what you wanted
________________________________
drathbun WebHelper
Joined: 01 Mar 2003
Posts: 69
Location: Texas
Posted:
Mon Sep 22, 2003 4:30 pm (22 years ago)
If you want items grouped with the max bid amount, you need to use a Max() and a GROUP BY clause. Something like...
Code:
Select keyword, max(bid_amount)
from table
where keyword like '%job%'
group by keyword
You cannot post new topics in this forum. You cannot reply to topics in this forum. You cannot edit your posts in this forum. You cannot delete your posts in this forum. You cannot vote in polls in this forum.