Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, July 18, 2016

SQL: Table Transformation Lesson 12 Sample Solution


Instructions:
Select the items in the category column that are in the legacy_products table and not in the new_products table.

Sample Solution:
SELECT category FROM legacy_products
EXCEPT
SELECT category FROM new_products;

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts