Time | Duration | Type | Duplicated | Query |
---|---|---|---|---|
22:27:24.510 | 3.6 ms | SHOW | 1 | SHOW FULL COLUMNS FROM `teammates` |
22:27:24.514 | 1.2 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 = 'teammates' AND kcu.table_name = 'teammates' |
22:27:24.516 | 4.8 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE `id`='13' |
22:27:24.522 | 2.1 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE (`publish`=TRUE) AND (JSON_EXTRACT(title, '$.uk') IS NOT NULL) ORDER BY `id` LIMIT 4 |