First I have to say I do not know SQL or VB very well...so if I'm able to get this to work without learning a new language then I'll be ecstatic.
OK...I have a tbl of approximately 1000 lines of data and about 20-30 columns each. The actual query itself is irrelevant, but I'm meshing this up against multiple other tbls that I'm linked too. What I need is this 1000 lines of data to remain in tact (at least what's left of them) when the query is complete. However when it is complete the 1000 lines of data turns into 15000 lines of data. If anything I should only see a fraction of the original 1000 records (maybe 300-400). I can't do group by on something so large and with so much information.
There is one field that is distinct in every line of my original tbl. How can I do a group by on that one field only though. I've seen the SELECT DISTINCT command used before and tried to build that into my SQL statement but it doesn't work. Should I "Make new table" with the 15000 lines and then build a new query with SELECT DISTINCT command, if so what is the correct format if this is all I want it to do.
Sorry if this is tough to understand.
OK...I have a tbl of approximately 1000 lines of data and about 20-30 columns each. The actual query itself is irrelevant, but I'm meshing this up against multiple other tbls that I'm linked too. What I need is this 1000 lines of data to remain in tact (at least what's left of them) when the query is complete. However when it is complete the 1000 lines of data turns into 15000 lines of data. If anything I should only see a fraction of the original 1000 records (maybe 300-400). I can't do group by on something so large and with so much information.
There is one field that is distinct in every line of my original tbl. How can I do a group by on that one field only though. I've seen the SELECT DISTINCT command used before and tried to build that into my SQL statement but it doesn't work. Should I "Make new table" with the 15000 lines and then build a new query with SELECT DISTINCT command, if so what is the correct format if this is all I want it to do.
Sorry if this is tough to understand.