T
TC
MDW said:OK, I've got what may be a completely trivial problem. I'm
going to be working with a moderate number of records -
perhaps 3,000 max. I have a datum that could be described
as boolean - it's either yes or no.
The nature of the data dictates a vast majority of the
values for this field are going to be either one or the
other, depending on how I define the table. For instance,
if most of the glasses were full, then I could call the
field IsFull and most of the values would be True.
Conversely, I could call the field IsEmpty, in which case
most of the fields would be False.
My question is this - from a design standpoint, would
there be any benefit going one way or another? Would
there be any sort of notable query efficiency, storage
benefit from having these data False vs. True?
No. In the jet file structure, boolean columns are truly stored as single
bits. From a storage viewpoint, it makes no difference whether they are
true, false, or any mixture of the two.
HTH,
TC