Join Products with Suppliers to Retrieve Supplier Names
products Table:

suppliers Table:

Products and Suppliers tables using a common SupplierID, so we can get the matching supplier for each product.
SQL Query:
USE SalesInventoryDB;
SELECT products.ProductName,suppliers.SupplierName FROM products
inner join suppliers on products.SupplierID=suppliers.SupplierID;
Output:

