I am having trouble counting the number of rows until it reaches a certain PK.

My PK is called id and I want to count all rows until i reach a specified id

I have tried using this query but it doesn't work probably becuase I am using a MySQL table

select max(count(*)) from news where id=18 group by id

I get this error

Invalid use of group function

link|improve this question

76% accept rate
feedback

2 Answers

Try this:

select count(*) from news where id <= 18
link|improve this answer
So simple......don't know why i didn't see that – AdRock Jul 3 '10 at 10:02
feedback
select count(*) from news where id<=18 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.