cenalulu的技术博客
cenalulu_cu
全部博文(89)
2009年(89)
cynthia
markben1
guest_29
yisildea
分类: Mysql/postgreSQL
2009-04-06 11:23:30
select student, sum(if(course='语文',mark,0)) as 语文, sum(if(course='数学',mark,0)) as 数学 from table1 group by student
1 a 2 b 1 c 2 d 合并为 1 a,c 2 b,d
select group_concat(column_b,separator ',') from table_name group by column_a;
上一篇:索引设计原则
下一篇:mysql复制表
登录 注册