MySQL数据库中字符串的处理方法

数据库 MySQL
此文章主要向大家讲述的是MySQL数据库存储过程基本函数类型即字符串以及对其基本功能与具体应用的介绍,以下就是文章的详细内容描述。

以下的文章主要向大家描述的是MySQL数据库存储过程基本函数类型即字符串,MySQL字符串在实际操作中还是经常被用到的,以下的文章主要是对MySQL字符串的时机应用与相关功能的描述。

字符串类

CHARSET(str) //返回字串字符集

CONCAT (string2 [,... ]) //连接字串

INSTR (string ,substring ) //返回substring***在string中出现的位置,不存在返回0

LCASE (string2 ) //转换成小写

LEFT (string2 ,length ) //从string2中的左边起取length个字符

LENGTH (string ) //string长度

LOAD_FILE (file_name ) //从文件读取内容

LOCATE (substring , string [,start_position ] ) 同INSTR,但可指定开始位置

LPAD (string2 ,length ,pad ) //重复用pad加在string开头,直到字串长度为length

LTRIM (string2 ) //去除前端空格

REPEAT (string2 ,count ) //重复count次

REPLACE (str ,search_str ,replace_str ) //在str中用replace_str替换search_str

RPAD (string2 ,length ,pad) //在str后用pad补充,直到长度为length

RTRIM (string2 ) //去除后端空格

STRCMP (string1 ,string2 ) //逐字符比较两字串大小,

SUBSTRING (str , position [,length ]) //从str的position开始,取length个字符,

注:MySQL数据库中处理字符串时,默认***个字符下标为1,即参数position必须大于等于1

  1. MySQL> select substring('abcd',0,2);  
  2. +-----------------------+  
  3. | substring('abcd',0,2) |  
  4. +-----------------------+  
  5. | |  
  6. +-----------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select substring('abcd',1,2);  
  9. +-----------------------+  
  10. | substring('abcd',1,2) |  
  11. +-----------------------+  
  12. | ab |  
  13. +-----------------------+  
  14. 1 row in set (0.02 sec)  
  15. TRIM([[BOTH|LEADING|TRAILING] [padding] FROM]string2)  

 去除指定位置的指定字符

UCASE (string2 ) //转换成大写

RIGHT(string2,length) //取string2***length个字符

SPACE(count) //生成count个空格

以上的相关内容就是对MySQL数据库存储过程基本函数中的字符串的介绍,望你能有所收获。

[[11677]]

【编辑推荐】

  1. MySQL匹配模式的实现方案简介
  2. MySQL数据库还原的实现步骤
  3. 实现MySQL数据库备份,很简单!
  4. 对MySQL服务器实行优化的措施有哪些?
  5. MySQL 事件调度器示例演示
责任编辑:佚名 来源: 博客园
相关推荐

2010-06-13 18:06:06

2009-07-24 10:06:33

数据库字符串ASP.NET

2010-11-26 09:51:54

MySQL字符串

2009-05-18 13:18:54

字符Oracle字符串

2011-08-09 16:52:24

2011-05-11 10:54:47

分组想加

2009-08-07 14:02:12

C#数据库连接字符串

2009-08-20 18:13:17

C#中Access数据

2010-06-17 16:06:07

SQL Server数

2011-03-22 10:44:20

SQL Server数拆分字符串函数

2020-05-12 08:53:15

JavaScript字符串处理库

2021-08-26 11:41:50

字符串String.jsVoca

2009-08-20 17:55:43

C#连接Oracle数

2020-09-03 10:13:49

JavaScript字符串pad

2010-11-26 11:20:31

MySQL字符串处理函

2011-03-17 14:09:25

Oracle数据库字符

2010-10-09 11:54:46

MySQL字符串

2009-11-26 16:26:32

PHP字符串mbstr

2009-02-24 15:39:27

字符串比较函数函数

2010-06-17 15:54:04

SQL Server数
点赞
收藏

51CTO技术栈公众号