CREATE TABLE commercio (
        id_pratica varchar(9),
        id_anag   int,
        tipo_anag char(1),
        insegna character varying(250),
        idvia int,
        civico  int,
        sub char(3),
        giornochiusura integer,
        mezzagiornata char(1) DEFAULT NULL,
        albergo char(1) DEFAULT NULL,
        tipoalbergo char(1) DEFAULT NULL,
        camere int,
        letti int,
        pastitradizionali char(1) DEFAULT NULL,
        pastiveloci char(1) DEFAULT NULL,
        pizzeria char(1) DEFAULT NULL,
        mensa char(1) DEFAULT NULL,
        tipomensa char(1) DEFAULT NULL,
        bevandealcooliche char(1) DEFAULT NULL,
        bevandeanalcooliche char(1) DEFAULT NULL,
        classifica int,
        tipoc char(1) DEFAULT NULL,
        attivitaprevalente character varying (250) DEFAULT NULL
);

