#2
⏱️ 146.1 мс
select count(*) as "aggregate" from "master_products" where "barcode" is not null and "category_slug" = ? and "subcategory_slug" = ? and (exists (select 1 from "store_prices" where "store_prices"."master_product_id" = "master_products"."id" and "store_prices"."store_id" in (?)) or exists (select 1 from "deals" where "deals"."master_product_id" = "master_products"."id" and "deals"."is_active" = ? and "deals"."store_id" in (?)))
Bindings:
["snacks","cookies_cakes",200,true,200]
#3
⏱️ 64.69 мс
select * from "master_products" where "barcode" is not null and "category_slug" = ? and "subcategory_slug" = ? and (exists (select 1 from "store_prices" where "store_prices"."master_product_id" = "master_products"."id" and "store_prices"."store_id" in (?)) or exists (select 1 from "deals" where "deals"."master_product_id" = "master_products"."id" and "deals"."is_active" = ? and "deals"."store_id" in (?))) order by CASE WHEN master_products.image_url IS NOT NULL AND master_products.image_url != '' THEN 0 ELSE 1 END, "master_products"."id" desc limit 32 offset 0
Bindings:
["snacks","cookies_cakes",200,true,200]
#4
⏱️ 22.22 мс
select * from "deals" where "master_product_id" in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and "is_active" = ? and "store_id" in (?)
Bindings:
[162201,135112,112472,108362,108348,106717,101100,101095,101083,101081,101079,101077,101076,101019,101018,101001,99634,99247,98870,98198,95599,95265,1722939,126792,113158,95766,true,200]
#6
⏱️ 10.33 мс
select * from "store_prices" where "master_product_id" in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and "price" > ? and "store_id" in (?)
Bindings:
[162201,135112,112472,108362,108348,106717,101100,101095,101083,101081,101079,101077,101076,101019,101018,101001,99634,99247,98870,98198,95599,95265,1722939,126792,113158,95766,0,200]
#9
⏱️ 19.85 мс
select store_id, count(*) as total from "deals" where "store_id" in (?) and "is_active" = ? and ("expires_at" is null or "expires_at" >= ?) group by "store_id"
Bindings:
[200,true,"2026-09-08T06:21:44.157799Z"]