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

新手!查询语句

WBOY
Release: 2016-06-13 10:07:01
Original
913 people have browsed it

新手求助!查询语句
表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>
Copy after login
SQL code
    SELECT count(*) as counter FROM table group by goods_sn order by goods_sn desc limit 10<div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template