欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SQL函數(shù)將某個字段合并在一起的操作

 更新時間:2021年01月22日 16:11:01   作者:Megamind_HL  
這篇文章主要介紹了SQL函數(shù)將某個字段合并在一起的操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧

最近遇到需要將關(guān)聯(lián)表中的某個字段全部查詢出來并且重新組合為一個字段,這個時候普通的連接查詢就滿足不了需求了,需要用到SQL函數(shù)來完成:

ALTER function dbo.getResCodesByOwnerId(@OwnerId INT)
returns nvarchar(2000)
as
begin
DECLARE @codes VARCHAR(2000)
SET @codes=''
select @codes=stuff((select ','+residence_code from crm_owner co left join crm_owner_residence cor on co.id=cor.owner_id where co.id=@OwnerId for xml path('')),1,1,'')
return @codes
END

拿id = 2 的數(shù)據(jù)來做測試,得到結(jié)果:

select (數(shù)據(jù)庫名).getResCodesByOwnerId(fr.owner_id) as room_code
from t1 fr left join t2 frd on fr.owner_id=frd.owner_id

結(jié)果:

1101010105,11GU002,1101010104

補充:SQL STUFF函數(shù) 拼接字符串

今日看到一篇文章,是關(guān)于和并列的,也研究了下,還是不錯的

要這種效果。

create table tb(idint, value varchar(10))
insert into tbvalues(1,'aa')
insert into tbvalues(1,'bb')
insert into tbvalues(2,'aaa')
insert into tbvalues(2,'bbb')
insert into tbvalues(2,'ccc')
go
 
/*     stuff(param1, startIndex, length, param2)

說明:將param1中自startIndex(SQL中都是從1開始,而非0)起,刪除length個字符,然后用param2替換刪掉的字符。*/

SELECT id,
           value = stuff
             ((SELECT   ',' + value
               FROM     tb AS t
               WHERE   t .id = tb.id FOR xml path('')), 1, 1, '')
FROM     tb
GROUP BY id

這樣即可。

收集的資料

/* 
標題:按某字段合并字符串之一(簡單合并) 
作者:(十八年風(fēng)雨,守得冰山雪蓮花開) 
地點:廣東深圳 
 
描述:將如下形式的數(shù)據(jù)按id字段合并value字段。 
id  value 
----- ------  
1   aa 
1   bb 
2   aaa 
2   bbb 
2   ccc 
需要得到結(jié)果: 
id   value 
------ -----------  
1   aa,bb 
2   aaa,bbb,ccc 
即:group by id, 求 value 的和(字符串相加) 
*/ 
--1、sql2000中只能用自定義的函數(shù)解決  
create table tb(id int, value varchar(10)) 
insert into tb values(1, 'aa') 
insert into tb values(1, 'bb') 
insert into tb values(2, 'aaa') 
insert into tb values(2, 'bbb') 
insert into tb values(2, 'ccc') 
go 
 
create function dbo.f_str(@id varchar(10)) returns varchar(1000) 
as 
begin 
 declare @str varchar(1000) 
 select @str = isnull(@str + ',' , '') + cast(value as varchar) from tb where id = @id 
 return @str 
end 
go 
 
--調(diào)用函數(shù)  
select id , value = dbo.f_str(id) from tb group by id 
 
drop function dbo.f_str 
drop table tb  
 
--2、sql2005中的方法  
create table tb(id int, value varchar(10)) 
insert into tb values(1, 'aa') 
insert into tb values(1, 'bb') 
insert into tb values(2, 'aaa') 
insert into tb values(2, 'bbb') 
insert into tb values(2, 'ccc') 
go  
select id, [value] = stuff((select ',' + [value] from tb t where id = tb.id for xml path('')) , 1 , 1 , '') 
from tb 
group by id  
drop table tb 
  
--3、使用游標合并數(shù)據(jù)  
create table tb(id int, value varchar(10)) 
insert into tb values(1, 'aa') 
insert into tb values(1, 'bb') 
insert into tb values(2, 'aaa') 
insert into tb values(2, 'bbb') 
insert into tb values(2, 'ccc') 
go 
declare @t table(id int,value varchar(100))--定義結(jié)果集表變量  
--定義游標并進行合并處理  
declare my_cursor cursor local for 
select id , value from tb 
declare @id_old int , @id int , @value varchar(10) , @s varchar(100) 
open my_cursor 
fetch my_cursor into @id , @value 
select @id_old = @id , @s='' 
while @@FETCH_STATUS = 0 
begin 
  if @id = @id_old 
    select @s = @s + ',' + cast(@value as varchar) 
  else 
   begin 
    insert @t values(@id_old , stuff(@s,1,1,'')) 
    select @s = ',' + cast(@value as varchar) , @id_old = @id 
   end 
  fetch my_cursor into @id , @value 
END 
insert @t values(@id_old , stuff(@s,1,1,'')) 
close my_cursor 
deallocate my_cursor 
 
select * from @t 
drop table tb 

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。

相關(guān)文章

  • MySQL數(shù)據(jù)庫開發(fā)的36條原則(小結(jié))

    MySQL數(shù)據(jù)庫開發(fā)的36條原則(小結(jié))

    這篇文章主要介紹了MySQL數(shù)據(jù)庫開發(fā)的36條原則(小結(jié)),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-09-09
  • mysql8.0.18下安裝winx64的詳細教程(圖文詳解)

    mysql8.0.18下安裝winx64的詳細教程(圖文詳解)

    這篇文章主要介紹了安裝mysql-8.0.18-win-x64的詳細教程,本文圖文并茂給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-11-11
  • MySQL表的增刪改查(CRUD)

    MySQL表的增刪改查(CRUD)

    這篇文章主要介紹了如何對數(shù)據(jù)庫增刪改查,想要更全面了解的小伙伴,可以詳細閱讀本文
    2023-03-03
  • 關(guān)于MySql數(shù)據(jù)庫Update批量更新不同值的實現(xiàn)方法

    關(guān)于MySql數(shù)據(jù)庫Update批量更新不同值的實現(xiàn)方法

    這篇文章主要介紹了關(guān)于MySql數(shù)據(jù)庫Update批量更新不同值的實現(xiàn)方法,數(shù)據(jù)庫管理系統(tǒng)可以通過SQL管理數(shù)據(jù)庫,定義和操作數(shù)據(jù),維護數(shù)據(jù)的完整性和安全性,需要的朋友可以參考下
    2023-05-05
  • mysql中mvcc的具體使用

    mysql中mvcc的具體使用

    MVCC多版本并發(fā)控制是一種并發(fā)控制的方法,一般在數(shù)據(jù)庫管理系統(tǒng)中,實現(xiàn)對數(shù)據(jù)庫的并發(fā)訪問,本文主要介紹了mysql中mvcc的具體使用,感興趣的可以了解一下
    2024-09-09
  • 使用mysqldump實現(xiàn)mysql備份

    使用mysqldump實現(xiàn)mysql備份

    mysqldump客戶端可用來轉(zhuǎn)儲數(shù)據(jù)庫或搜集數(shù)據(jù)庫進行備份或?qū)?shù)據(jù)轉(zhuǎn)移到另一個SQL服務(wù)器(不一定是一個MySQL服務(wù)器)。今天我們就來詳細探討下mysqldump的使用方法
    2016-11-11
  • MySQL數(shù)據(jù)權(quán)限的實現(xiàn)詳情

    MySQL數(shù)據(jù)權(quán)限的實現(xiàn)詳情

    這篇文章主要介紹了MySQL數(shù)據(jù)權(quán)限的實現(xiàn)詳情,文章通過實際案例,從代碼實戰(zhàn)的角度來實現(xiàn)這樣的一個數(shù)據(jù)權(quán)限。具體詳細介紹,具有一定的參考價值
    2022-08-08
  • MySQL 存儲過程的基本用法介紹

    MySQL 存儲過程的基本用法介紹

    我們大家都知道MySQL 存儲過程是從 MySQL 5.0 開始逐漸增加新的功能。存儲過程在實際應(yīng)用中也是優(yōu)點大于缺點。不過最主要的還是執(zhí)行效率和SQL 代碼封裝。特別是 SQL 代碼封裝功能,如果沒有存儲過程。
    2010-12-12
  • Mysql索引的類型和優(yōu)缺點詳解

    Mysql索引的類型和優(yōu)缺點詳解

    這篇文章主要為大家詳細介紹了Mysql索引的類型和優(yōu)缺點,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-09-09
  • 詳解MySQL中InnoDB的存儲文件

    詳解MySQL中InnoDB的存儲文件

    本篇是一篇關(guān)于MySQL專題知識點的內(nèi)容,詳細講述了InnoDB的存儲文件的相關(guān)內(nèi)容,感興趣的朋友學(xué)習(xí)下。
    2018-02-02

最新評論