You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following example returns all rows in the `Production.ProductCategory` table that do not have value in `ProductCategoryID` that is equal to the value 3 or the value 2.
55
55
56
-
```
56
+
```sql
57
57
-- Uses AdventureWorks
58
58
59
59
SELECT ProductCategoryID, Name
60
60
FROMProduction.ProductCategory
61
61
WHERE ProductCategoryID <>3AND ProductCategoryID <>2;
0 commit comments