月薪1800块的站长
不打算了解一下吗

数据库删除包含某字符串的记录

采用下面sql 对 insertDate 字段值中包含的- 替换为 点,
update *****表名 set insertDate=REPLACE(insertDate,’-’,’.’)

删除 某表中 包含某个字符的 记录

DELETE from ** 表名 where insertDate like ‘%-%’

赞(0)
分享到: 更多 (0)