myt/templates/function.sql

12 lines
189 B
SQL
Executable File

SELECT
`name`,
`definer`,
`param_list` paramList,
`returns`,
`is_deterministic` isDeterministic,
`body`,
`modified`
FROM mysql.proc
WHERE `db` = ? AND `type` = 'FUNCTION'