全文検索:
- 2024.04.12 MySQL BIT Field
- ------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_incr... ql> select * from test; +----+------+---------+ | id | name | enabled | +----+------+---------+ | 1 | ... == To See the Display ===== <code> mysql> select id,name, cast(enabled as UNSIGNED) as enabled from test; +----+------+---------+ | id | name | enabled | +----+------+---------+ | 1 |