I am trying to run this code:
`
with cart_amount as (select customer_id, count(customer_id) "Count" from in_cart group by customer_id)
with order_amount as (select customer_id, count(customer_id) "Count" from in_order group by customer_id)
select c.first_name "Customer Name",
c.email "Customer Email"
from in_cart ic join customer c on ic.customer_id=c.customer_id
join cart_amount ca on ic.customer_id=ca.customer_id
join order_amount oa on ic.customer_id=oa.customer_id
where (ca."Count" - oa."Count") > 0
group by c.first_name, c.email
`
But it gives me a missing SELECT keyword error and I am not sure why.