mysql 字符串拼接函数CANCAT()与GROUP_CANCAT()

1.CONCAT()  拼接单行字符串

select concat(‘100’,user_id) from table1;

select concat(‘11‘,‘22‘,‘33‘);
  结果  112233

MySQL的concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULL
select concat(‘11‘,‘22‘,null);
  结果 NULL

2.GROUP_CANCAT() 把查询出的所有行的字符串拼接成一个串 返回

例如:我用select dictinct date from table1,得到如下表
200805
200806
200807
200808
200809
200810
200811
现在我需要将得到的这个表的这一列拼接成一个字符串,即
200805,200806,200807,200808,200809,200810,200811

  select GROUP_CONCAT(dictinct date) from table1;

select GROUP_CONCAT(dictinct ‘001-’, date) from table1; 拼接字符串 并返回不同的

  返回 001-200805,001-200806,001-200807,001-200808,001-200809,001-200810,001-200811

时间: 2024-10-28 21:40:44

mysql 字符串拼接函数CANCAT()与GROUP_CANCAT()的相关文章

LotusScript提升大字符串拼接函数(功能类似java中StringBuffer)

LotusScript提升大字符串拼接函数(功能类似java中StringBuffer),代码如下: Class StringBuffer Public count As Integer Private arr() As String Private size As Integer Private increment As Integer Sub New(Byval a As Integer) Redim arr(a) increment=a count=0 End Sub Sub add(By

使用字符串拼接函数,创建并解析查询列表条件

Declare @store_list varchar(8000) select @store_list=',1,3,4,6,8,12,' /* select stuff(@store_list , len(@store_list) , 1 ,'') select @store_list=stuff(@store_list , len(@store_list) , 1 ,'')+'''' select @store_list as store_list_2 select @store_list

MySQL 字符串截取函数

MySQL 字符串截取函数:left(), right(), substring(), substring_index().还有 mid(), substr().其中,mid(), substr() 等价于 substring() 函数,substring() 的功能非常强大和灵活. 1. 字符串截取:left(str, length) mysql> select left('sqlstudy.com', 3); +-------------------------+ | left('sqlst

Oracle与MySQL字符串拼接

一.MySQL 在java中我们通常用加号"+"来实现字符串的拼接,MySQL中也可以使用"+"来实现,比如: 先加入测试数据 CREATE TABLE test( id INT, name VARCHAR(10), score FLOAT ); INSERT INTO test VALUES(1,'zhang',98); INSERT INTO test VALUES(2,'li',95); Demo1 SELECT NAME+'hello' FROM test;

Mysql字符串截取函数SUBSTRING的用法说明

感觉上MySQL的字符串函数截取字符,比用程序截取(如PHP或JAVA)来得强大,所以在这里做一个记录,希望对大家有用. 函数: 1.从左开始截取字符串 left(str, length) 说明:left(被截取字段,截取长度) 例:select left(content,200) as abstract from my_content_t 2.从右开始截取字符串 right(str, length) 说明:right(被截取字段,截取长度) 例:select right(content,200

MySQL 字符串拼接详解

在Mysql 数据库中存在两种字符串连接操作.具体操作如下一. 语法:   1. CONCAT(string1,string2,-)   说明 : string1,string2代表字符串,concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULL   例1:      例2:   2. CONCAT_WS(separator,str1,str2,...)     说明 : string1,string2代表字符串,concat_ws 代表 concat with separ

MySQL字符串连接函数

一.CONCAT(str1,str2,…) 返回结果为连接参数产生的字符串.如有任何一个参数为NULL ,则返回值为 NULL. select concat(s_id, "--", s_bar_code) from `t_storage_order_detail` WHERE `s_sn` LIKE '%R2016091200002%' LIMIT 0, 1000; +--------------------------------+| concat(s_id, "--&qu

Mysql字符串连接函数 CONCAT()与 CONCAT_WS()

从数据库里取N个字段,然后组合到一起用“,”分割显示,起初想到用CONCAT()来处理,好是麻烦,没想到在手册里居然有提到 CONCAT_WS(),非常好用. CONCAT_WS(separator, str1, str2,...) 它是一个特殊形式的 CONCAT().第一个参数剩余参数间的分隔符.分隔符可以是与剩余参数一样的字符串.如果分隔符是 NULL,返回值也将为 NULL.这个函数会跳过分隔符参数后的任何 NULL 和空字符串.分隔符将被加到被连接的字符串之间 简单例子如下: mysq

mysql字符串拼接

1.CONCAT()2.CONCAT_WS()3.GROUP_CONCAT()为了方便下面举例,这里放个student表供下面使用 s_id s_name   s_sex   01     张三       男   02     李四       男   03     王五       男   04     赵六      null 一.CONCAT() :最常用的字符串拼接方法,但遇到拼接中的字符串出现null的情况会返回null语法:CONCAT(string1,string2)DEMO1m