Tengo una duda.... Resulta que tengo una estructura de unas tablas en MsSql y quiero convertirlas de manera facil y rapida en Postgres.
Lo que yo tengo es:
Código:
Y quiero el equivalente en Postgres.CREATE TABLE Agente ( IdAgente smallint IDENTITY(1,1), IdPais smallint NOT NULL, RSNAgente varchar(150) NOT NULL, DocAgente char(50) NULL, DirAgencia varchar(300) NULL, ConAgencia varchar(50) NULL, Tl1Agente char(50) NULL, Tl2Agente char(50) NULL, FaxAgente char(50) NULL, CorAgente char(100) NULL, TipAgente char(1) NOT NULL, GrupAgente char(100) NULL, UsuTra char(10) NOT NULL, FecTra smalldatetime NOT NULL, Status char(1) NOT NULL )
Saludos