Skip to content

Instantly share code, notes, and snippets.

@joelonsql
joelonsql / sql_vs_plpgsql_functions_demo.sql
Created June 2, 2025 19:47
Demo showing some differences between sql vs plpgsql PostgreSQL functions
--
-- sql function demo
--
CREATE TABLE example_table
(
id INT NOT NULL,
name TEXT NOT NULL,
PRIMARY KEY (id)
);