Time | Duration | Type | Duplicated | Query |
---|---|---|---|---|
04:26:08.055 | 31.7 ms | SELECT | 1 | SELECT COUNT(*) FROM `news` WHERE (`publish`=TRUE) AND (JSON_EXTRACT(content, '$.uk') IS NOT NULL) |
04:26:08.088 | 2.0 ms | SHOW | 1 | SHOW FULL COLUMNS FROM `news` |
04:26:08.090 | 3.0 ms | SELECT | 1 | SELECT
kcu.constraint_name,
kcu.column_name,
kcu.referenced_table_name,
kcu.referenced_column_name
FROM information_schema.referential_constraints AS rc
JOIN information_schema.key_column_usage AS kcu ON
(
kcu.constraint_catalog = rc.constraint_catalog OR
(kcu.constraint_catalog IS NULL AND rc.constraint_catalog IS NULL)
) AND
kcu.constraint_schema = rc.constraint_schema AND
kcu.constraint_name = rc.constraint_name
WHERE rc.constraint_schema = database() AND kcu.table_schema = database()
AND rc.table_name = 'news' AND kcu.table_name = 'news' |
04:26:08.094 | 2.4 ms | SELECT | 1 | SELECT * FROM `news` WHERE (`publish`=TRUE) AND (JSON_EXTRACT(content, '$.uk') IS NOT NULL) ORDER BY `created_at` DESC LIMIT 4 OFFSET 20 |