SQL - Database Design and Normalization
Given the table:
Where ProductList stores multiple product IDs separated by semicolons. What will be the output of this query?
Sales(SaleID, CustomerID, ProductList)Where ProductList stores multiple product IDs separated by semicolons. What will be the output of this query?
SELECT SaleID, ProductList FROM Sales;