Inserting NULL wherever possible on Postgres

Posted on 11 Apr, 2023

UUID

To insert null UUIDs, activate the extension

create extension if not exists "uuid-ossp";

then use the function uuid_nil().

Last updated