Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Medical Center database
Non primary-foreign key JOINs
Non-equi JOINs
Non-equi self JOINs
22. Get to know the Orders table
Summary

Instruction

Okay, here comes the last table: Orders.

Exercise

Select all data from the Orders table.

It contains only three columns:

  • Id – the ID of a given order,
  • ProductId – the ID of a given ordered product,
  • OrderDate – the date of a given order, and
  • Amount – the amount of a given order.

Stuck? Here's a hint!

Type:

SELECT
  *
FROM Orders