自学 sql 网站
http://www.xuesql.cn/
https://www.w3school.com.cn
自带sql语句库,语句解析
此文章是在里面的练习答案和个人笔记 (偶尔更新)
给字段添加前缀 / 后缀 (concat)
coucat
concat的拼接的意思,将多个字段拼接在一起
可以先用查询语句测试一下
select concat('前缀',字段,'后缀') from 表名
update 表名 set 字段=concat('前缀',字段,'后缀')
给数字字段 数据 加减乘除
加法
update 表名 set 1字段=1字段+10 where 条件
减法
update 表名 set 1字段=1字段-10 where 条件
乘法
update 表名 set 1字段=1字段*10 where 条件
除法
update 表名 set 1字段=1字段/10 where 条件