我应该对值1和0的字段使用MySQL枚举还是tinyint?

对于0和1值,请使用TINYINT。让我们首先创建一个表-

mysql> create table DemoTable
   -> (
   -> IsMarried tinyint
   -> );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values(1);
mysql> insert into DemoTable values(0);

使用select语句显示表中的所有记录-

mysql> select * from DemoTable;

这将产生以下输出-

+-----------+
| IsMarried |
+-----------+
|         1 |
|         0 |
+-----------+
2 rows in set (0.00 sec)