Executed Queries (3)
-
select column_name as `name`, data_type as `type_name`, column_type as `type`, collation_name as `collation`, is_nullable as `nullable`, column_default as `default`, column_comment as `comment`, generation_expression as `expression`, extra as `extra` from information_schema.columns where table_schema = schema() and table_name = 'countries' order by ordinal_position ascx1 -
select * from `cities` where `country_code` = 'KW' and `active` = 1 order by `population` desc, JSON_UNQUOTE(JSON_EXTRACT(IF(JSON_VALID(name), name, JSON_OBJECT('en', name)), '$.en')) asc limit 1000x1 -
select * from `employee_skills` where `is_deleted` = 0 and `status` = 1 order by `skill` ascx1