mysql替换开头_如何在MySQL的字符串开头搜索和替换特定
字符?
为此,您可以使⽤I大草 NSERT()。让我们⾸先创建⼀个表-mysql> create table Demo爱情的文案 Table
-> (
-> ZipCode varchar(200)
-> );飘洋过海来见你
使⽤插⼊命令在表中插⼊⼀些记录-mysql> inrt into DemoTable values('9030');
mysql保险有哪些 > inrt into DemoTable values('3902');
mysql> inrt into DemoTable values('9083');
mysql> inrt into DemoTable values('9089');
使⽤lect语句显⽰表中的所有记录-mysql> lect *from DemoTable;
输出结果+---------+
| ZipCode |
+---------+
| 9030 |
| 3902 |
| 9083 |
| 9089 |
+---------+
4 rows in t (0.00 c)
以下是在字符串开头搜索和替换字符的查询。在这⾥,我们如何更改开机密码 仅处理ZipCode从90开始的记录-
mysql> update DemoTable t ZipCode=INSERT(ZipCode, 1, 2, 'Country-AUS-')
-> where ZipCode LIKE '90%';
Rows matched: 3 Changed: 3 Warnings: 0
让我们再次检查表记录-mysql> lect *from DemoTable;
输出结果+----------------+
| ZipCode |
+----------------+
| Country-AUS-党课记录模板 30 |
| 3902 |
| Country-AUS-83 |
| Country-AUS-89 |
+----------------+
4 rows in t (0.00 c)
本文发布于:2023-04-23 09:29:37,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/fan/89/844113.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |