Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

sql query with union

i have a query that is working property

Select field1, field2, field3, count(8) AS countt
from master
Group By field1, field2, field3

i want to ALSO join in another table but with exactly the same fields and then return ONLY those records where count > 1

Do i do this somehow with union?
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vbnetcoder
vbnetcoder

ASKER

ty