I am having difficulty with the following:
I am trying to records when certain conditions apply, for example:
The query is based on 1 table
has the following columns:
Include
Delete
Car
Company
SalesAssociate
I would like to return only the records where
Delete=false, Include=true but... I only want to return records that have multiple results for example:
if the following was the data:
Include Delete Car Company SalesAssociate
true false GM AT Joe
true false GM AT Joe
false true GM AT Joe
true false GM KK Joe
true false GM GG Jan
true false GM KK Mike
true false GM GG Dan
So, the query would only return when Delete=false, Include=true and multiple records when the car company and SalesAssociate all eqaul the same. Therefore the following would be returned:
Include Delete Car Company SalesAssociate
true false GM AT Joe
true false GM AT Joe
Needing help..
Thanks
I am trying to records when certain conditions apply, for example:
The query is based on 1 table
has the following columns:
Include
Delete
Car
Company
SalesAssociate
I would like to return only the records where
Delete=false, Include=true but... I only want to return records that have multiple results for example:
if the following was the data:
Include Delete Car Company SalesAssociate
true false GM AT Joe
true false GM AT Joe
false true GM AT Joe
true false GM KK Joe
true false GM GG Jan
true false GM KK Mike
true false GM GG Dan
So, the query would only return when Delete=false, Include=true and multiple records when the car company and SalesAssociate all eqaul the same. Therefore the following would be returned:
Include Delete Car Company SalesAssociate
true false GM AT Joe
true false GM AT Joe
Needing help..
Thanks