2020-11-14 01:38:56 +00:00
|
|
|
|
|
|
|
SELECT
|
2022-02-02 04:05:31 +00:00
|
|
|
`TABLE_SCHEMA` AS `schema`,
|
2021-10-22 14:11:03 +00:00
|
|
|
`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 ?
|
2021-10-22 14:11:03 +00:00
|
|
|
ORDER BY `name`
|