Query Metrics
19
Database Queries
11
Different statements
7.20 ms
Query time
0
Invalid entities
Grouped Statements
| Time▼ | Count | Info |
|---|---|---|
|
1.49 ms (20.62%) |
2 |
SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = ? AND TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME
Parameters:
[
"pubquiz"
]
|
|
1.19 ms (16.46%) |
1 |
SELECT c.COLUMN_NAME AS field, c.COLUMN_TYPE AS type, c.IS_NULLABLE AS `null`, c.COLUMN_KEY AS `key`, c.COLUMN_DEFAULT AS `default`, c.EXTRA, c.COLUMN_COMMENT AS comment, c.CHARACTER_SET_NAME AS characterset, c.COLLATION_NAME AS collation FROM information_schema.COLUMNS c INNER JOIN information_schema.TABLES t ON t.TABLE_NAME = c.TABLE_NAME WHERE c.TABLE_SCHEMA = ? AND t.TABLE_SCHEMA = ? AND t.TABLE_TYPE = 'BASE TABLE' AND t.TABLE_NAME = ? ORDER BY ORDINAL_POSITION
Parameters:
[ "pubquiz" "pubquiz" "doctrine_migration_versions" ] |
|
0.89 ms (12.29%) |
1 |
SELECT DISTINCT k.CONSTRAINT_NAME, k.COLUMN_NAME, k.REFERENCED_TABLE_NAME, k.REFERENCED_COLUMN_NAME, k.ORDINAL_POSITION /*!50116, c.UPDATE_RULE, c.DELETE_RULE */ FROM information_schema.key_column_usage k /*!50116 INNER JOIN information_schema.referential_constraints c ON c.CONSTRAINT_NAME = k.CONSTRAINT_NAME AND c.TABLE_NAME = k.TABLE_NAME */ WHERE k.TABLE_SCHEMA = ? AND k.TABLE_NAME = ? AND k.REFERENCED_COLUMN_NAME IS NOT NULL /*!50116 AND c.CONSTRAINT_SCHEMA = 'pubquiz' */ ORDER BY k.ORDINAL_POSITION
Parameters:
[ "pubquiz" "doctrine_migration_versions" ] |
|
0.76 ms (10.59%) |
1 |
SELECT t.TABLE_NAME, t.ENGINE, t.AUTO_INCREMENT, t.TABLE_COMMENT, t.CREATE_OPTIONS, t.TABLE_COLLATION, ccsa.CHARACTER_SET_NAME FROM information_schema.TABLES t INNER JOIN information_schema.COLLATION_CHARACTER_SET_APPLICABILITY ccsa ON ccsa.COLLATION_NAME = t.TABLE_COLLATION WHERE t.TABLE_SCHEMA = ? AND t.TABLE_NAME = ? AND t.TABLE_TYPE = 'BASE TABLE'
Parameters:
[ "pubquiz" "doctrine_migration_versions" ] |
|
0.74 ms (10.23%) |
6 |
SELECT DATABASE()
Parameters:
[] |
|
0.63 ms (8.72%) |
1 |
SELECT NON_UNIQUE AS Non_Unique, INDEX_NAME AS Key_name, COLUMN_NAME AS Column_Name, SUB_PART AS Sub_Part, INDEX_TYPE AS Index_Type FROM information_schema.STATISTICS WHERE TABLE_SCHEMA = ? AND TABLE_NAME = ? ORDER BY SEQ_IN_INDEX
Parameters:
[ "pubquiz" "doctrine_migration_versions" ] |
|
0.57 ms (7.98%) |
3 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.display_name AS display_name_5, t0.last_logged_in AS last_logged_in_6, t0.language AS language_7, t0.credit AS credit_8, t0.entry_hash AS entry_hash_9, t0.reset_hash AS reset_hash_10, t0.reset_hash_date AS reset_hash_date_11 FROM user t0 WHERE t0.id = ?
Parameters:
[
272
]
|
|
0.33 ms (4.61%) |
1 |
SELECT t0.id AS id_1, t0.applicant_id AS applicant_id_2, t0.team_id AS team_id_3 FROM team_application t0 WHERE t0.team_id = ?
Parameters:
[
34
]
|
|
0.29 ms (4.03%) |
1 |
SELECT t0.id AS id_1, t0.name AS name_2, t0.is_archived AS is_archived_3, t0.is_disbanded AS is_disbanded_4, t0.is_hiring AS is_hiring_5 FROM team t0 WHERE t0.id = ?
Parameters:
[
"34"
]
|
|
0.23 ms (3.25%) |
1 |
SELECT t0.id AS id_1, t0.is_leader AS is_leader_2, t0.team_id AS team_id_3, t0.user_id AS user_id_4 FROM team_user t0 WHERE t0.team_id = ?
Parameters:
[
34
]
|
|
0.09 ms (1.22%) |
1 |
SELECT * FROM doctrine_migration_versions
Parameters:
[] |
Database Connections
| Name | Service |
|---|---|
| default | doctrine.dbal.default_connection |
Entity Managers
| Name | Service |
|---|---|
| default | doctrine.orm.default_entity_manager |
Second Level Cache
Second Level Cache is not enabled.
Entities Mapping
| Class | Mapping errors |
|---|---|
| App\Entity\Team | No errors. |
| App\Entity\Reservation | No errors. |
| App\Entity\TeamUser | No errors. |
| App\Entity\TeamApplication | No errors. |
| App\Entity\User | No errors. |
| App\Entity\VenueTable | No errors. |
| App\Entity\PubQuiz | No errors. |
| App\Entity\TeamApplicationVote | No errors. |
| App\Entity\Venue | No errors. |
| App\Entity\OnlineQuiz | No errors. |
| App\Entity\Invoice | No errors. |