mysql 一些用法 case when,GROUP_CONCAT,显示行set @count = 0;
1. 判断 case when id=1 then '1' when id=2 then '2' end as iden 如果id=1 值就为1,如果id=2 值就为2,字段别名为iden
2.
table t_class;
name classname
王一 一班
王二 一班
王三 二班
。。。
结果
name classname
王一,王二 一班
王三 二班
select replace(GROUP_CONCAT(id),',',',') as name,classname from t_class group by classname;
3.
开始时我是这样写的
set @count = 0;
select (@count := @count + 1) as rows,t.* from t_node t
但是这种方法在数据库可以运行,但是写到java中用StringBuffer时 “;”分号会报语法错误所以换了以下写法就没有问题了
select (@count := @count + 1) as rows,t.* from t_node t,(select (@count :=0) ) b