| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
|||
Incorporated vendors products less than $150I am using MS Access 2003 and the question is: List all the products offered by Incorporated vendors(i.e. those vendors who have the word "Inc" in their name) and which cost less than $150. I have to have the following columns: Vendor Name, Product Description, and Product Price. This is a join, I think, because the vendor table is separate from the product table and have a common link, which is the v_code. Help Please.
|
|
|||
|
Quote:
Select Vendor.VendorName,Product.ProductCost from Vendor inner join Product on Vendor.v_code=Product.v_code where (Vendor.VendorName like '%Inc%') and (Product.ProductCost <=150) |