All, using access 2016. I have one table with custid, state and order id.. some have the same cust id and state. I want only the records that have the same custid and same state. I keep getting everything. My query is the following
Is it because its' one table? I tried a count but still get everything. what do I need to get this data? It's Friday and I can't think
Code:
select customerid, count(*)as st_count
from custord
groupby
customerid having count(*)>1
Is it because its' one table? I tried a count but still get everything. what do I need to get this data? It's Friday and I can't think
