Indexing boolean fields

前端 未结 6 1379
-上瘾入骨i
-上瘾入骨i 2020-12-07 20:04

This is probably a really stupid question, but is there going to be much benefit in indexing a boolean field in a database table?

Given a common situation, like \"so

6条回答
  •  借酒劲吻你
    2020-12-07 20:16

    If you are using database that supports bitmap indexes (such as Oracle), then such an index on a boolean column will much more useful than without.

提交回复
热议问题