如何在MySQL表值中的任何空白处添加特定字符?
为此,请使用REPLACE()function并用字符替换空白。让我们首先创建一个表-
mysql> create table DemoTable (Subject text);
示例
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('Introduction to MySQL');
mysql> insert into DemoTable values('Java in depth');
mysql> insert into DemoTable values('Data Structure and Algorithm');使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
输出结果
+------------------------------+ | Subject | +------------------------------+ | Introduction to MySQL | | Java in depth | | Data Structure and Algorithm | +------------------------------+ 3 rows in set (0.00 sec)
以下是替换空白的查询-
mysql> SELECT *,REPLACE(Subject,' ','_') as Subject_Name from DemoTable;
输出结果
+-------------------------------+------------------------------+ | Subject | Subject_Name | +-------------------------------+------------------------------+ | Introduction to MySQL | Introduction_to_MySQL | | Java in depth | Java_in_depth | | Data Structure and Algorithm | Data_Structure_and_Algorithm | +-------------------------------+------------------------------+ 3 rows in set (0.00 sec)
热门推荐
6 哈尼族祝福语简短
10 新年祝福语姨姨简短
11 送同学的简短祝福语
12 情侣520的祝福语简短
13 初四祝福语简短霸气
14 住院送饭的祝福语简短
15 祖国祝福语简短走心
16 中秋骚气祝福语简短情人
17 亲人喜得贵子祝福语简短
18 八一祝福语简短文字