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

Instruction

Good! Let's meet the doctors and therapists, shall we? The Physician table contains information about the physicians that work at a medical center.

Exercise

Select all data from the Physician table. It has five columns:

  • Id – the ID of a given physician,
  • Email – the email of a given physician,
  • FirstName – the first name of a given physician,
  • LastName – the last name of a given physician, and
  • Experience – a given physician's experience, in years.

Stuck? Here's a hint!

Type:

SELECT
  *
FROM Physician