SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'empresas';
↑+1ms
#3
debug
SELECT * FROM empresas ORDER BY nombre ASC
↑+11ms
#4
debug
SHOW COLUMNS FROM `users`;
↑+2ms
#5
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'users';
↑+1ms
#6
debug
SHOW COLUMNS FROM `pages`;
↑+1ms
#7
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'pages';
↑+1ms
#8
debug
SELECT * FROM pages WHERE `showonmenu` = TRUE ORDER BY lower(menu) ASC, lower(submenu) ASC, ordernum ASC, lower(title) ASC
↑+1ms
#9
debug
SHOW COLUMNS FROM `roles_users`;
↑+2ms
#10
debug
SELECT CONSTRAINT_NAME as name, CONSTRAINT_TYPE as type FROM information_schema.table_constraints WHERE table_schema = schema() AND table_name = 'roles_users';
↑+1ms
#11
debug
SELECT * FROM roles_users WHERE `nick` IS NULL
↑+1ms
#12
debug
SELECT * FROM pages WHERE name = 'Root' LIMIT 1 OFFSET 0;