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