Hola, estoy tratando de hacer lo siguiente
create table mc(
mes integer not null,
cuenta character(15) not null,
importe1 real,
importe2 real
);
create table detalle(
codigodet character(2),
cuentas text[]
);
Esta consulta es la que quiero hacer
select sum(importe1)
from mc
where cuenta in (select cuentas from detalle);
pero me sale un error,
la duda es como tratar ese tipo de campo en la subconsulta, espero sus sugerencias
gracias