Get Started. It's Free
or sign up with your email address
Postgresql by Mind Map: Postgresql

1. UUID

1.1. Problema quando não encontra a função para gerar uuid automático

1.1.1. CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

2. Where

2.1. Case insensitive

2.1.1. Select * From myarea Where area_name ILIKE 'Jawa Barat1'

2.2. Json

2.2.1. AND "services"."animal_types"::jsonb @> '["CAT"]'::jsonb

3. Tabelas

3.1. Contar a quantidade de tabelas

3.1.1. select count(*) from information_schema.tables where table_schema = 'public';