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`,
|
2021-10-22 14:11:03 +00:00
|
|
|
`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`,
|
2020-11-14 01:38:56 +00:00
|
|
|
`modified`
|
2021-10-22 14:11:03 +00:00
|
|
|
FROM `mysql`.`proc`
|
2022-02-02 04:05:31 +00:00
|
|
|
WHERE ? AND `type` = 'PROCEDURE'
|
2021-10-22 14:11:03 +00:00
|
|
|
ORDER BY `name`
|