Steve Leibel writes: > I'm converting a mysql database to postgres. Is there an equivalent > for the enum data type? No, but you can put the enum data in a separate table and join them. This also makes the operation of adding entries to the enum list better defined. Dan