| 1 |
2.05 ms |
insert into trackbrowsing (sessionid, pathname, url, getparameters, userid, browsetime) values
(:sessionid, :pathname, :url, :getparameters, :userid, :browsetime)
Parameters: [
"sessionid" => "2106aa3de3801be43f2d3f2d9dd9066c"
"pathname" => "app_shop_product_details"
"url" => "/shop/productdetails/5998269/654073660"
"getparameters" => "{"shopid":"5998269","productid":"654073660"}"
"userid" => "22270733"
"browsetime" => 1786553550
]
insert into trackbrowsing (sessionid, pathname, url, getparameters, userid, browsetime) values
('2106aa3de3801be43f2d3f2d9dd9066c', 'app_shop_product_details', '/shop/productdetails/5998269/654073660', '{\"shopid\":\"5998269\",\"productid\":\"654073660\"}', '22270733', 1786553550);
|
| 2 |
0.79 ms |
select * from shop where shopid = '5998269'
select * from shop where shopid = '5998269';
|
| 3 |
0.50 ms |
select * from shopproducts where shopid = '5998269' and shopproductid = '654073660'
select * from shopproducts where shopid = '5998269' and shopproductid = '654073660';
|
| 4 |
0.92 ms |
SELECT p0_.id AS id_0, p0_.shopid AS shopid_1, p0_.productid AS productid_2, p0_.productprice AS productprice_3, p0_.markasoffer AS markasoffer_4, p0_.addedtime AS addedtime_5 FROM prodproductprice p0_ WHERE p0_.shopid = ? AND p0_.productid = ? ORDER BY p0_.id DESC LIMIT 1
Parameters: [
"5998269"
"654073660"
]
SELECT p0_.id AS id_0, p0_.shopid AS shopid_1, p0_.productid AS productid_2, p0_.productprice AS productprice_3, p0_.markasoffer AS markasoffer_4, p0_.addedtime AS addedtime_5 FROM prodproductprice p0_ WHERE p0_.shopid = '5998269' AND p0_.productid = '654073660' ORDER BY p0_.id DESC LIMIT 1;
|
| 5 |
0.91 ms |
select * from serviceavailabletimes where shopid = '5998269' and productid = '654073660'
select * from serviceavailabletimes where shopid = '5998269' and productid = '654073660'
;
|
| 6 |
0.66 ms |
select * from productspecs where shopid = '5998269' and productid = '654073660'
select * from productspecs where shopid = '5998269' and productid = '654073660';
|
| 7 |
0.55 ms |
select * from proddiscountprice where shopid = '5998269' and productid = '654073660' order by id desc limit 0,1
select * from proddiscountprice where shopid = '5998269' and productid = '654073660' order by id desc limit 0,1;
|
| 8 |
0.46 ms |
select * from cart where establishmentid = '5998269' and productid = '654073660' and userid = '22270733'
select * from cart where establishmentid = '5998269' and productid = '654073660' and userid = '22270733';
|
| 9 |
0.45 ms |
select * from shopproductimages where productid = '654073660' and productimagevisibility = '0' order by id desc
select * from shopproductimages where productid = '654073660' and productimagevisibility = '0' order by id desc;
|
| 10 |
0.45 ms |
select * from shopproductmoq where productid = '654073660' and shopid = '5998269' order by id desc
select * from shopproductmoq where productid = '654073660' and shopid = '5998269' order by id desc;
|
| 11 |
0.54 ms |
select * from orders
JOIN orderproducts ON orders.orderid = orderproducts.orderid
where orders.userid = '22270733' and orders.establishmentid = '5998269' and orderproducts.productid = '654073660'
select * from orders
JOIN orderproducts ON orders.orderid = orderproducts.orderid
where orders.userid = '22270733' and orders.establishmentid = '5998269' and orderproducts.productid = '654073660';
|
| 12 |
0.89 ms |
select * from orderreview where productid = '654073660' and shopid = '5998269' and displayreview = '1' order by id desc
select * from orderreview where productid = '654073660' and shopid = '5998269' and displayreview = '1' order by id desc;
|
| 13 |
0.51 ms |
select * from shopproductsstock where shopid = :shopid and productid = :productid and showhide = '0' order by id desc
Parameters: [
"shopid" => "5998269"
"productid" => "654073660"
]
select * from shopproductsstock where shopid = '5998269' and productid = '654073660' and showhide = '0' order by id desc;
|
| 14 |
0.55 ms |
select * from shopproductvariants where shopid = :shopid and productid = :productid
Parameters: [
"shopid" => "5998269"
"productid" => "654073660"
]
select * from shopproductvariants where shopid = '5998269' and productid = '654073660';
|
| 15 |
0.75 ms |
SELECT c0_.id AS id_0, c0_.userid AS userid_1, c0_.cartid AS cartid_2, c0_.establishmentid AS establishmentid_3, c0_.productid AS productid_4, c0_.productvariantid AS productvariantid_5, c0_.productname AS productname_6, c0_.productcartprice AS productcartprice_7, c0_.quantity AS quantity_8, c0_.engravetext AS engravetext_9, c0_.addedtime AS addedtime_10 FROM cart c0_ WHERE c0_.userid = ? GROUP BY c0_.establishmentid
Parameters: [
"22270733"
]
SELECT c0_.id AS id_0, c0_.userid AS userid_1, c0_.cartid AS cartid_2, c0_.establishmentid AS establishmentid_3, c0_.productid AS productid_4, c0_.productvariantid AS productvariantid_5, c0_.productname AS productname_6, c0_.productcartprice AS productcartprice_7, c0_.quantity AS quantity_8, c0_.engravetext AS engravetext_9, c0_.addedtime AS addedtime_10 FROM cart c0_ WHERE c0_.userid = '22270733' GROUP BY c0_.establishmentid;
|