摘要: --多行数据分组后合并某个字段 declare @tabs table(tId int,name nvarchar(10)) insert @tabs values (1,'linda'), (1,'salar'), (2,'mom'), (2,'cc') select tId, stuff( (s 阅读全文
posted @ 2021-03-10 11:17 微笑代表淡定.Net 阅读(345) 评论(0) 推荐(0) 编辑