Skip to content

Instantly share code, notes, and snippets.

View RudyRodarte's full-sized avatar

Rudy Rodarte RudyRodarte

View GitHub Profile
@RudyRodarte
RudyRodarte / pg_get_functiondef.sql
Created July 24, 2024 22:01
Display function defenition in PostgreSQL
-- Display function definition in PostgreSQL
-- Mostrar el codigo de una función en PostgreSQL
SELECT pg_get_functiondef('function_name_here'::regproc);