The best option is 0 and 1 (as numbers), using NOT NULL and a check constraint to limit contents to those values. (If you need the column to be nullable, then it's not a boolean you're dealing with but an enumeration with three values...)
Advantages of 0/1:
- Language independent. 'Y' and 'N' would be fine if everyone used it. But they don't. In France they use 'O' and 'N' (I have seen this with my own eyes). I assume the Finns are not silly enough to use 'E' and 'K', but I wouldn't stake too much on it.
- Congruent with practice in widely-used programming languages (C, C++, Perl, Javascript)
- Plays better with the application layer e.g. Hibernate
- Leads to more succinct SQL, for example, to find out how many bananas are ready to eat
select sum(is_ripe) from bananas instead of select count(*) from bananas where is_ripe = 'Y' or even (yuk) select sum(case is_ripe when 'Y' then 1 else 0) from bananas
Advantages of 'Y'/'N':
- Takes up less space than 0/1
- It's what Oracle suggests, so might be what some people are more used to
Another poster suggested 'Y'/null for performance gains. If you've proven that you need the performance, then fair enough, but otherwise avoid since it makes querying less natural (some_column is null instead of some_column = 0) and in a left join you'll conflate falseness with nonexistent records.
walldata type so I could smash my head against it when using booleans. – Greg Mar 29 '10 at 20:28