T
Treebeard
Hi,
I need an SQL query that returns the dups of a specific field.
For example, if I have a table with two fields, PIndex and BOOKID and it
contained these records:
PINDEX BOOKID
1 AAAAA
2 BBBBB
3 CCCCC
4 AAAAA
5 DDDDD
6 AAAAA
7 EEEEE
8 CCCCC
9 FFFFFF
10 GGGGG
I would like the query to return this:
1 AAAAA
3 CCCCC
Thanks,
Jack
I need an SQL query that returns the dups of a specific field.
For example, if I have a table with two fields, PIndex and BOOKID and it
contained these records:
PINDEX BOOKID
1 AAAAA
2 BBBBB
3 CCCCC
4 AAAAA
5 DDDDD
6 AAAAA
7 EEEEE
8 CCCCC
9 FFFFFF
10 GGGGG
I would like the query to return this:
1 AAAAA
3 CCCCC
Thanks,
Jack