PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Tabela de particionamento baseada na primeira letra de um campo varchar


Você pode usar uma expressão na partition by cláusula, por exemplo:
create table my_table(name text)
partition by list (left(name, 1));

create table my_table_a
partition of my_table
for values in ('a');

create table my_table_b
partition of my_table
for values in ('b');

Resultados:
insert into my_table 
values
    ('abba'), ('alfa'), ('beta');

select 'a' as partition, name from my_table_a
union all
select 'b' as partition, name from my_table_b;

 partition | name 
-----------+------
 a         | abba
 a         | alfa
 b         | beta
(3 rows)

Se o particionamento não diferencia maiúsculas de minúsculas, você pode usar
create table my_table(name text)
partition by list (lower(left(name, 1)));

Leia na documentação: