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,
  • first_name – the first name of a given physician,
  • last_name – 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