Retrieving Patient Data by Height and Weight in SQLite

Easy
12
88.0% Acceptance

Your task is to write an SQL query to retrieve specific information about patients. You are required to find the first_name, last_name, and birth_date of patients who have a height greater than 160 and a weight greater than 70.

Requirements

  • Familiarity with SQLite and SQL query syntax.
  • Knowledge of SQL SELECT statements.
  • Understanding of SQL WHERE clause for filtering records.

Write your SQL query in the space provided. Once you think you have the correct query, run it to check your solution.

Good luck!