CREATE TABLE conSuperEduc (
    periodo INT NOT NULL DEFAULT (0),
    cuenta INT NOT NULL DEFAULT (0),
    descripcion VARCHAR(255) NOT NULL DEFAULT (''),
    clasRepSIE INT NOT NULL DEFAULT (0),
    descripcionClasRepSIE VARCHAR(255) NOT NULL DEFAULT (''),
    CONSTRAINT PK_conSuperEduc PRIMARY KEY (periodo, cuenta)
);