(9,'name9',2),
(10,'name10',2),
(11,'name11',3),
(12,'name12',3);
第二步:查询
需求:按照p_code字段对product表进行分组并取每组的前两条数据...tmp_num:=@tmp_num+1,@tmp_num:=0)表示如果p_code的值等于@tmp_code的话,@tmp_num自增1,这样我们就可以通过'tmp_num'这个字段来获取到每一组的前几条数据...=p_code 'tmp_code' from product order by p_code)
a where a.tmp_num<2 )
建议在开发环境不要使用order by因为这样会出现文件内排序