Re: [SQL] Column Types

2003-09-14 Thread Oliver Elphick
On Sun, 2003-09-14 at 07:49, Muhyiddin A.M Hayat wrote: > If in MySQL i'm using type EMUN what type in Postgres? Use a CHECK constraint: CREATE TABLE xxx ( ... colourTEXT CHECK (colour IN ('red', 'green', 'blue')), ... ); -- Oliver Elphick[EMAIL PR

[SQL] Column Types

2003-09-14 Thread Muhyiddin A.M Hayat
If in MySQL i'm using type EMUN what type in Postgres?