5.93 ms (82.71%)
|
1 |
SELECT d0_.id AS id_0, d0_.name AS name_1, d0_.slug AS slug_2, d0_.date AS date_3, d0_.code AS code_4, d0_.state AS state_5, d0_.type AS type_6, d0_.description AS description_7, d0_.user_id AS user_id_8, d0_.product_id AS product_id_9 FROM decks d0_ WHERE d0_.type = ? AND d0_.state = ? ORDER BY d0_.date DESC
Parameters: [
"commu"
"public"
]
SELECT d0_.id AS id_0, d0_.name AS name_1, d0_.slug AS slug_2, d0_.date AS date_3, d0_.code AS code_4, d0_.state AS state_5, d0_.type AS type_6, d0_.description AS description_7, d0_.user_id AS user_id_8, d0_.product_id AS product_id_9 FROM decks d0_ WHERE d0_.type = 'commu' AND d0_.state = 'public' ORDER BY d0_.date DESC;
|
0.53 ms (7.44%)
|
1 |
SELECT a0_.id AS id_0, a0_.name AS name_1, a0_.date AS date_2, a0_.block1 AS block1_3, a0_.block2 AS block2_4, a0_.block3 AS block3_5, a0_.slug AS slug_6, a0_.actif AS actif_7, a0_.image_url AS image_url_8, a0_.langue AS langue_9, a0_.image_link AS image_link_10, a0_.autor_id AS autor_id_11 FROM articles a0_ WHERE a0_.actif = ? AND a0_.langue = ? AND a0_.date <= ? ORDER BY a0_.date DESC
Parameters: [
1
"fr"
"2026-06-04 11:10:16"
]
SELECT a0_.id AS id_0, a0_.name AS name_1, a0_.date AS date_2, a0_.block1 AS block1_3, a0_.block2 AS block2_4, a0_.block3 AS block3_5, a0_.slug AS slug_6, a0_.actif AS actif_7, a0_.image_url AS image_url_8, a0_.langue AS langue_9, a0_.image_link AS image_link_10, a0_.autor_id AS autor_id_11 FROM articles a0_ WHERE a0_.actif = 1 AND a0_.langue = 'fr' AND a0_.date <= '2026-06-04 11:10:16' ORDER BY a0_.date DESC;
|
0.38 ms (5.34%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.is_verified AS is_verified_5, t0.username AS username_6, t0.newsletter AS newsletter_7, t0.langue AS langue_8, t0.premium AS premium_9, t0.token AS token_10 FROM `user` t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.is_verified AS is_verified_5, t0.username AS username_6, t0.newsletter AS newsletter_7, t0.langue AS langue_8, t0.premium AS premium_9, t0.token AS token_10 FROM `user` t0 WHERE t0.id = 12;
|