Retrieve Orders with Their Shipping Company Names
Order Table:

shippers Table:

Orders table with the Shippers table using the ShipperID to link each order with its corresponding shipping company.
SQL Query:
USE SalesInventoryDB;
select orders.OrderID,shippers.ShipperName from orders
inner join shippers on orders.ShipperID= shippers.ShipperID;
Output:

