Time | Duration | Type | Duplicated | Query |
---|---|---|---|---|
03:46:43.765 | 3.9 ms | SHOW | 1 | SHOW FULL COLUMNS FROM `teammates` |
03:46:43.769 | 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' |
03:46:43.771 | 3.0 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE `id`='2' |
03:46:43.775 | 2.2 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE (`publish`=TRUE) AND (JSON_EXTRACT(title, '$.uk') IS NOT NULL) ORDER BY `id` LIMIT 4 |