SELECT DISTINCT
IncreasmentAmount,
Name,
regionid
FROM Pricing.GroupOfRegions
WHERE regionid in (6,7)
This statement produces this result:
12.80 AB 6
13.00 ABC 6
15.00 AC 6
12.80 AB 7
13.00 ABC 7
I'd like to add more conditions where IncreasmentAmount
s are equal. This would result in the rows that have the same IncreasmentAmount:
12.80 AB 6
12.80 AB 7
How can I modify the query to produce the results I want?