Home >Backend Development >PHP Tutorial > 新手!查询语句

新手!查询语句

WBOY
WBOYOriginal
2016-06-13 13:43:03996browse

新手求助!查询语句
表A里有字段 id(自增),order_id(订单id),goods_sn(产品编码),其他字段... 查询产品编码出现最多的前10个产品的语句怎么写呀?菜鸟求助

------解决方案--------------------

SQL code


SELECT *, count(goods_sn) as counter FROM table group by goods_sn order by goods_sn desc
<br><font color="#e78608">------解决方案--------------------</font><br><br>SELECT COUNT(*) AS CT FROM A ORDER  BY id  DESC GROUP BY goods_sn;<br><br>试看看<br>
<br><font color="#e78608">------解决方案--------------------</font><br>
SQL code

    SELECT count(*) as counter FROM table group by goods_sn order by goods_sn desc limit 10 <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn