HTMLify

Q1068_Product_Sales_Analysis_I.sql
Views: 194 | Author: djdj
select product_name,year,price from sales
inner join product
on sales.product_id = product.product_id;

Comments