),
(9,'name9',2),
(10,'name10',2),
(11,'name11',3),
(12,'name12',3);
第二步:查询
需求:按照p_code字段对product表进行分组并取每组的前两条数据...SQL语句:
select * from(
select *,IF(@tmp_code=p_code,@tmp_num:=@tmp_num+1,@tmp_num:=0) 'tmp_num',@tmp_code...:=p_code 'tmp_code' from product order by p_code)
a where a.tmp_num<6
sql解释:@tmp_code:=p_code表示把p_code