Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 624 Bytes

Simple-IN.md

File metadata and controls

26 lines (22 loc) · 624 Bytes

For this challenge you need to create a SELECT statement, this SELECT statement will use an IN to check whether a department has had a sale with a price over 98.00 dollars.

departments table schema

  • id
  • name

sales table schema

  • id
  • department_id (department foreign key)
  • name
  • price
  • card_name
  • card_number
  • transaction_date

resultant table schema

  • id
  • name

NOTE: sometimes a department will not not contain a sale over $98 so just resubmit.

-- Create your SELECT statement here
SELECT id, name
FROM departments
WHERE id IN (SELECT department_id FROM sales WHERE price > 98.00);