You need to sign in before continuing.
create_e1109.sql 604 Bytes
DROP TABLE IF EXISTS public.e1109_lotes_activos CASCADE;

CREATE TABLE public.e1109_lotes_activos (
    id_snc bigint,
    dpto varchar(5),
    dist integer,
    padron integer,
    ccatastral varchar(50),
    tipo_cuenta integer,
    superficie_tierra numeric,
    superficie_edificado numeric,
    valor_tierra numeric,
    valor_edificado numeric,
    tipo integer,
    referencia integer,
    clave_comparacion varchar(100),
    geom geometry(MultiPolygon, 4326),
    snc_cuenta varchar(50),
    ccc varchar(50)
);

CREATE INDEX sidx_e1109_lotes_geom ON public.e1109_lotes_activos USING GIST (geom);
GitLab Appliance - Powered by TurnKey Linux