summaryrefslogtreecommitdiff
path: root/graphs/sql/gluttonous_order/req04.sql
blob: 0967a4aeb41f6746ce7dca9142ff1af11e99582a (plain)
1
2
3
4
5
6
7
INSERT INTO public.scrooge_eats_basket_items ( order_id,item_id,quantity )
SELECT DISTINCT 10000,I.id,1
FROM
(
    SELECT id FROM public.scrooge_eats_items
    WHERE name SIMILAR TO '(Kinder Bueno White)|(Tacos)|(Coca-Cola)'
) AS I