I have the following table (dots):
recno uid uname points
============================
1 a abc 10
2 b bac 8
3 c cvb 12
4 d aty 13
5 f cyu 9
I need to show only a dozen entries with dots (desc) and five entries on each page. I execute the SQL statement:
select * from points where uid in(a,c) order by uid LIMIT 1, 5
thank
source
share