在MySQL中使用带有TINYINT的Update语句?
让我们首先创建一个表。我们已将其中一列设置为TINYINT类型-
create table DemoTable -> ( -> EmployeeId int, -> isMarried tinyint -> );
使用插入命令在表中插入一些记录-
insert into DemoTable values(101,true); insert into DemoTable values(102,false); insert into DemoTable values(103,true); insert into DemoTable values(104,true);
使用select语句显示表中的所有记录-
select *from DemoTable;
这将产生以下输出-
+------------+----------+ | EmployeeId | isMarried| +------------+----------+ | 101 | 1 | | 102 | 0 | | 103 | 1 | | 104 | 1 | +------------+----------+ 4 rows in set (0.00 sec)
这是使用TINYINT实现UPDATE语句的查询-
update DemoTable -> set isMarried=false -> where EmployeeId=103; Rows matched: 1 Changed: 1 Warnings: 0
让我们再次检查表记录-
select *from DemoTable;
这将产生以下输出-
+------------+----------+ | EmployeeId | isMaried | +------------+----------+ | 101 | 1 | | 102 | 0 | | 103 | 0 | | 104 | 1 | +------------+----------+ 4 rows in set (0.00 sec)
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短