Time | Duration | Type | Duplicated | Query |
---|---|---|---|---|
01:15:23.663 | 3.4 ms | SHOW | 1 | SHOW FULL COLUMNS FROM `teammates` |
01:15:23.667 | 1.3 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' |
01:15:23.669 | 3.7 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE `id`='1' |
01:15:23.673 | 1.5 ms | SELECT | 1 | SELECT * FROM `teammates` WHERE (`publish`=TRUE) AND (JSON_EXTRACT(title, '$.uk') IS NOT NULL) ORDER BY `id` LIMIT 4 |