For SQL: There are three Tables: Product, Vendor and Category
Product: productid, productname, productprice, vendorid, categoryid
Vendor: vendorid, vendorname
Category: categoryid, categoryname
1. Write a select Query with inner joins to retrieve the Productid, productname, productprice, vendorid,vendorname, categoryid,categoryname of all the products belonging to the vendor 'Didney'
2. Use Implicit inner join syntax to retrieve the columns Productid, productname, productprice, vendorid,vendorname categoryid, and categoryname of all the products belonging to the vendor 'Didney'