On Thu, 2005-05-05 at 15:28, CSN wrote: > > --- Dann Corbit <DCorbit@xxxxxxxxx> wrote: > > > why do you suppose > > > neither Mysql nor Oracle has bothered to implement > > it? > > > > Probably they just create a domain using a char > > which can take on two > > values (e.g. 't'/'f' or 1/0). Oracle 10 has a bit > > data type (which is a > > boolean for all intents and purposes): > > Could a bit handle NULL's though? > ISTR there is some debate on whether Booleans should allow NULL and thats why the boolean type is still in the extended set of sql spec and not core. Inceidentally MySQL's boolean is really scary... it's not just than 0 = false and 1 = true, its 0 = false and (n >= 1) is true. IMHO that sounds like a recipe for creating subtle bugs. Robert Treat -- Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your message can get through to the mailing list cleanly