全文検索:
- 2024.04.12 MySQL bitフィールド
- ------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_incr... ql> select * from test; +----+------+---------+ | id | name | enabled | +----+------+---------+ | 1 |... code> ===== 表示を見るには ===== <code> mysql> select id,name, cast(enabled as UNSIGNED) as enabled from test; +----+------+---------+ | id | name | enabled | +----+------+---------+ | 1 |