hey all
how do I retrieve only the first 5 records of the database using a select statement??
Any ideas
can't you use a counter that stops on 5
counter=0 while counter < 5 and always add 1 to the counter
LIMIT 5
Cheers!