This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
[Name], * | |
FROM | |
Customer AS c | |
inner join | |
Purchaise AS p | |
ON c.CustomerId = p.CustomerId | |
WHERE | |
p.ProductNameN = N'Молоко' | |
and c.CustomerId not in |