1、select GROUP_CONCAT(goods_name) as goods_name from goods; 获取到的商品名称用逗号隔开 例如: 苹果,梨,橘子。
问题1:GROUP_CONCAT(goods_name) 方法内字段名不能带引号,整的我下面两个都不知道奥不要带了。
tp5:db('goods_name ')->field("GROUP_CONCAT(goods_name) as goods_name")->select();
问题2:不能和limit连用,可以和where连用。(我要给顾客两个兑换券 他竟然告诉我不能用limit0,2 还能怎么查找两个卷?)
2、select count('goods_name') as count from goods; 统计商品的个数
3、select sum('goods_number') as sum from order;统计订单中商品的数量和