Make a mailing list of vendors who provide bikes. Include a Type column that says Vendor. Make sure each distinct vendor only appears once. (5 rows)
SELECT DISTINCT vendor_name, product_selling, `type` FROM vendors WHERE product_selling='bike' LIMIT 5
Comments
Leave a comment