Customers (CustomerID, CustomerName), Orders (OrderID, CustomerID, OrderDate, TotalAmount), and a separate Employees table (EmployeeID, Name, ManagerID).
INNER JOIN to display the CustomerName, OrderID, and TotalAmount for every order placed. Use table aliases (C for Customers, O for Orders).TotalAmount is greater than 500.LEFT JOIN to show CustomerName and OrderID.LEFT JOIN query, but add a WHERE clause to filter for records where the OrderID IS NULL.Promotions (containing '10% Off' and 'Free Shipping') and MembershipTiers (containing 'Gold', 'Silver', 'Bronze'). Write a CROSS JOIN query to generate every possible combination of promotions and membership tiers.Employees table, write a query that joins the table to itself. Your final output should have two columns: EmployeeName and their corresponding ManagerName. (Hint: Link the Employee's ManagerID to the Manager's EmployeeID).