I have a table with several records group by another field, more than 100 records. I need to show in a SELECT only 3 or 5 records per group
Like this
SOURCE
Number Group
------ -----
1 1
2 1
3 1
4 1
11 2
12 2
13 2
14 2
Result desired
Number Group
------ -----
1 1
2 1
11 2
12 2
Let's say 2 records per group out of the total records from that group.
Thanks
Like this
SOURCE
Number Group
------ -----
1 1
2 1
3 1
4 1
11 2
12 2
13 2
14 2
Result desired
Number Group
------ -----
1 1
2 1
11 2
12 2
Let's say 2 records per group out of the total records from that group.
Thanks