myt/exporters/function.sql

17 lines
319 B
MySQL
Raw Normal View History

2020-11-14 01:38:56 +00:00
SELECT
2022-02-02 04:05:31 +00:00
`db` AS `schema`,
2020-11-14 01:38:56 +00:00
`name`,
`definer`,
`param_list` AS `paramList`,
2020-11-14 01:38:56 +00:00
`body`,
2022-02-07 14:43:12 +00:00
`sql_data_access` AS `dataAccess`,
`security_type` AS `securityType`,
`comment`,
`modified`,
`is_deterministic` AS `isDeterministic`,
`returns`
FROM `mysql`.`proc`
2022-02-02 04:05:31 +00:00
WHERE ? AND `type` = 'FUNCTION'
ORDER BY `name`