MySQL 字段 LIKE 多个值 2023年03月09日 23时31分 星期四 记录 6225 阅读 比如需要这样的效果: select * from user where name like '%四%' or name like '%五%' 可以使用 REGEXP 写成: select * from user where name regexp '四|五'
MySQL 从一张表update字段到另外一张表中 2021年07月04日 10时23分 星期日 记录 3831 阅读 Solution 1: 1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; Solution 2: 多个列 update a, b set a.title=b.title, a.name=b.name where a.id=b.id Solution 3: 子查询 update stud
MySQL从一张表更新字段到另外一张表中 2021年01月13日 22时49分 星期三 记录 7102 阅读 这两天搞了个采集站,呵呵,需要用到这个功能(命令),经过一番搜索,终于搞定~~ update a, b set a.title=b.title, a.name=b.name where a.id=b.id 需要更新的表为a,更新源为表b,搞定~~
mysql 替换字段中的部分字符、替换指定字符 2020年03月07日 14时40分 星期六 记录 6242 阅读 最近在采集微博美女图片过程中出现了一些有规律的无关字符,未采集的可以采用php过滤给过滤掉,但已经采集的很多就只能在phpmyadmin中替换了,于是搜索之后终于搞定。 把“biao”表中“zifuduan”字段中的“A”全部修改成“B”,方法如下: update biao set zifuduan = replace(zifuduan,'A','B');