摘要: 原始数据idvalues 1A 1B 1C 2D 2E要得到的结果:1A,B,C 2D,E--创建测试表、数据create table tb(id int, value varchar(10)) insert into tb values(1, 'A') insert into tb values(... 阅读全文
posted @ 2014-10-14 09:49 giveup 阅读(993) 评论(0) 推荐(0)