--測試資料
create table csdn(id int,txt varchar(10))
insert csdn
select 1, 'a ' union all
select 1, 'b ' union all
select 1, 'c ' union all
select 2, 'aa ' union all
select 2, 'bb ' union all
select 2, 'cc ' union all
select 3, 'aaa ' union all
select 3, 'bbb '
select * from csdn
go create function gettxt(@id int)
returns varchar(8000)
as begin
declare @s varchar(8000)
set @s= ' '
select @s=@s + ', ' +txt from csdn where
id=@id
--return @s
return stuff(@s,1,1, ' ')
end
go select id,dbo.gettxt(id) txt from csdn group by id
go drop function gettxt
drop table csdn
go 貼子**飛諾網(
詳細出處參考:
字串分割自定義函式 SQL
今天中看到一朋友寫的sql中分割字串函式 在回帖中看到一朋友說到 select from dbo.split 01 02 03 發生錯誤,返回的結果不是我們原本要的結果 想要的結果 0102 03 實際結果 01 02 03以前我也寫過類似的字串分割自定義函式,也沒有想過上面出現的這樣問題。我原來的...
自定義字串排序
字串s和 t 只包含小寫字元。在s中,所有字元只會出現一次。s 已經根據某種規則進行了排序。我們要根據s中的字元順序對t進行排序。更具體地說,如果s中x在y之前出現,那麼返回的字串中x也應出現在y之前。返回任意一種符合條件的字串t。示例 輸入 s cba t abcd 輸出 cbad 解釋 s 現了...
自定義屬性字串
nsattributedstring ios6以後才有的 作用用來顯示自定義字串 顏色 字型 大小 uilabel label uilabel alloc initwithframe cgrectmake 0,100,320,40 label.text 你好 label.textcolor uico...