现在的程序,连接数据库一般都是ORM操作,许久不用SQL真的会疏。最近实现这样一个功能,也要折腾了一会儿才搞定。先看下需求,如下图所示。MySQL数据库的表,根据ParentCode分组,找出GoodsCode个数最大值。涉及到的SQL语法包括group by、max、子查询、表关联 方法1 select ParentCode,max(count(*)) from ba_goodscombine group by ParentCode; [Err] 1111 - Invalid use of grou…