Hi,
When using the following SQL query I get back just over 12,000 records.
SELECT JobNumber FROM myTABLE;
There are alot of duplicates within the records. I am wanting to only get back one of each JobNumber.
If I use SELECT JobNumber FROM myTABLE GROUP BY JobNumber the number of records is -1
This is within my VB Code.
Any ideas