Example Query Request
A frequently performed query on these tables might be the following:
SELECT l_PartKey, p_PartDescription, l_Quantity, l_SupplierKey
FROM LineItem, Part
WHERE l_PartKey=p_PartKey;
A frequently performed query on these tables might be the following:
SELECT l_PartKey, p_PartDescription, l_Quantity, l_SupplierKey
FROM LineItem, Part
WHERE l_PartKey=p_PartKey;