mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 14:56:01 +00:00
10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
module.exports = `
|
|
select
|
|
ROUTINE_NAME as pureName,
|
|
ROUTINE_TYPE as objectType,
|
|
COALESCE(LAST_ALTERED, CREATED) as modifyDate,
|
|
ROUTINE_DEFINITION as createSql
|
|
from information_schema.routines
|
|
where ROUTINE_SCHEMA = '#DATABASE#' and ROUTINE_NAME =[OBJECT_NAME_CONDITION]
|
|
`;
|