There is a requirement to have true or false column in table. Oracle does not allow boolean/bit datatypes for columns. So we can do this by two options char(1) or number datatype and store 1 and 0 as numbers or chars like '1' or '0'.
When doing a select on this table with where condition on this column with an index created on it which datatype is better to use. Char or number.
Or it does not matter. Please throw some light into this.