2.74 ms (9.56%)
|
2 |
SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.direction AS direction_4, t0.author AS author_5, t0.subdomain AS subdomain_6, t0.active AS active_7, t0.default_language AS default_language_8, t0.locale AS locale_9, t0.currency AS currency_10, t0.currency_symbol AS currency_symbol_11, t0.decimal_separator AS decimal_separator_12, t0.thousands_separator AS thousands_separator_13 FROM language t0 WHERE t0.code = ? AND t0.active = ? LIMIT 1
SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.direction AS direction_4, t0.author AS author_5, t0.subdomain AS subdomain_6, t0.active AS active_7, t0.default_language AS default_language_8, t0.locale AS locale_9, t0.currency AS currency_10, t0.currency_symbol AS currency_symbol_11, t0.decimal_separator AS decimal_separator_12, t0.thousands_separator AS thousands_separator_13 FROM language t0 WHERE t0.code = 'en' AND t0.active = 1 LIMIT 1;
|
1.72 ms (5.99%)
|
1 |
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.content AS content_4, t0.editor_mode AS editor_mode_5, t0.builder_data AS builder_data_6, t0.builder_css AS builder_css_7, t0.published AS published_8, t0.publish_at AS publish_at_9, t0.unpublish_at AS unpublish_at_10, t0.caption AS caption_11, t0.seo_title AS seo_title_12, t0.description AS description_13, t0.keywords AS keywords_14, t0.meta AS meta_15, t0.javascript AS javascript_16, t0.canonical AS canonical_17, t0.access AS access_18, t0.follow AS follow_19, t0.home_page AS home_page_20, t0.error_page AS error_page_21, t0.admin_only AS admin_only_22, t0.login_page AS login_page_23, t0.activation_page AS activation_page_24, t0.account_page AS account_page_25, t0.registration_page AS registration_page_26, t0.search_page AS search_page_27, t0.sitemap_page AS sitemap_page_28, t0.profile_page AS profile_page_29, t0.terms_page AS terms_page_30, t0.created_at AS created_at_31, t0.updated_at AS updated_at_32, t0.deleted_at AS deleted_at_33, t0.lock_version AS lock_version_34 FROM cms_page t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.content AS content_4, t0.editor_mode AS editor_mode_5, t0.builder_data AS builder_data_6, t0.builder_css AS builder_css_7, t0.published AS published_8, t0.publish_at AS publish_at_9, t0.unpublish_at AS unpublish_at_10, t0.caption AS caption_11, t0.seo_title AS seo_title_12, t0.description AS description_13, t0.keywords AS keywords_14, t0.meta AS meta_15, t0.javascript AS javascript_16, t0.canonical AS canonical_17, t0.access AS access_18, t0.follow AS follow_19, t0.home_page AS home_page_20, t0.error_page AS error_page_21, t0.admin_only AS admin_only_22, t0.login_page AS login_page_23, t0.activation_page AS activation_page_24, t0.account_page AS account_page_25, t0.registration_page AS registration_page_26, t0.search_page AS search_page_27, t0.sitemap_page AS sitemap_page_28, t0.profile_page AS profile_page_29, t0.terms_page AS terms_page_30, t0.created_at AS created_at_31, t0.updated_at AS updated_at_32, t0.deleted_at AS deleted_at_33, t0.lock_version AS lock_version_34 FROM cms_page t0 WHERE t0.id = 8;
|
1.40 ms (4.88%)
|
1 |
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.caption AS caption_4, t0.seo_title AS seo_title_5, t0.description AS description_6, t0.content AS content_7, t0.builder_data AS builder_data_8, t0.builder_css AS builder_css_9, t0.canonical AS canonical_10, t0.published AS published_11, t0.page_id AS page_id_12, t0.language_id AS language_id_13 FROM cms_page_translation t0 WHERE t0.language_id = ? AND t0.slug = ? AND t0.published = ? LIMIT 1
Parameters: [
2
"my-account"
1
]
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.caption AS caption_4, t0.seo_title AS seo_title_5, t0.description AS description_6, t0.content AS content_7, t0.builder_data AS builder_data_8, t0.builder_css AS builder_css_9, t0.canonical AS canonical_10, t0.published AS published_11, t0.page_id AS page_id_12, t0.language_id AS language_id_13 FROM cms_page_translation t0 WHERE t0.language_id = 2 AND t0.slug = 'my-account' AND t0.published = 1 LIMIT 1;
|