myt/exporters/view.sql

13 lines
294 B
MySQL
Raw Permalink Normal View History

2020-11-14 01:38:56 +00:00
SELECT
2022-02-02 04:05:31 +00:00
`TABLE_SCHEMA` AS `schema`,
`TABLE_NAME` AS `name`,
`VIEW_DEFINITION` AS `definition`,
`CHECK_OPTION` AS `checkOption`,
`IS_UPDATABLE` AS `isUpdatable`,
`DEFINER` AS `definer`,
`SECURITY_TYPE` AS `securityType`
FROM `information_schema`.`VIEWS`
2022-02-02 04:05:31 +00:00
WHERE ?
ORDER BY `name`