将数据库字段1改为2,2改为1 使用中间变量
update table set target3 where target1;
update table set target1 where target2;
update table set target2 where target3;使用case语句
update table
SET target
CASE targetWHEN 1 THEN 2 WHEN 2 THEN 1
END
打开idea
点击右上角file,在下拉列表中找到settings
或者直接点击键盘上的ctrl alt s 第二步,找到piugins,点击marketplace, 在搜索框中输入chinese ,点击install 下载完成之后重启idea即可