Advertisement
Fhernd

ProductosValoracionPositivaNegativa.sql

Jul 5th, 2016
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.19 KB | None | 0 0
  1. SELECT PR1.ProductID
  2.     FROM Production.ProductReview PR1
  3.         WHERE PR1.Rating >= 4
  4. INTERSECT
  5. SELECT PR1.ProductID
  6.     FROM Production.ProductReview PR1
  7.         WHERE PR1.Rating <= 2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement