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

Monday, July 18, 2016

SQL: Table Transformation Lesson 11 Sample Solution


Instructions:
Select the items in the category column that are both in the newly acquired new_products table and the legacy_products table.

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

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts