For this challenge you need to create a SELECT statement that will contain data about departments that had a sale with a price over 98.00 dollars. This SELECT statement will have to use an EXISTS to achieve the task.
- id
- name
- id
- department_id (department foreign key)
- name
- price
- card_name
- card_number
- transaction_date
- id
- name
NOTE: Your solution should use pure SQL. Ruby is used within the test cases to do the actual testing. Do not: alias tables as this can cause a failure.
-- Create your SELECT statement here
SELECT d.id, d.name
FROM departments as d
WHERE EXISTS (
SELECT * FROM sales as s WHERE s.department_id = d.id AND s.price > 98.00
)