Posts

Showing posts from September, 2013

Get a list of your functions in mysql

If you want a list of functions (as opposed to procedures) use this: select *  from information_schema.routines  where routine_schema = 'your_schema_name'  and routine_type != 'PROCEDURE'