Nov 12, 2002 #1 botsGuy Programmer Nov 12, 2002 5 AU Does anyone know how to, for example, select the top 10 records in an ordered query set in mySQL. Any help would be much appreciated. Cheers, James
Does anyone know how to, for example, select the top 10 records in an ordered query set in mySQL. Any help would be much appreciated. Cheers, James
Nov 12, 2002 #2 piti Technical User Apr 12, 2001 627 SK SELECT ... FROM table ORDER BY column LIMIT 10 ;-) Upvote 0 Downvote
Nov 12, 2002 Thread starter #3 botsGuy Programmer Nov 12, 2002 5 AU Aha, thats great. Cheers piti. Upvote 0 Downvote