Home  >  Article  >  Database  >  SQL 必知必会笔记8分组数据

SQL 必知必会笔记8分组数据

WBOY
WBOYOriginal
2016-06-07 17:39:491152browse

1. 使用GROUP BY子句创建分组 示例: SELECT vend_id, COUNT ( * ) AS num_prods FROM Products GROUP BY vend_id;

1. 使用GROUP BY子句创建分组

示例:

SELECT vend_id, COUNT(*) AS num_prods FROM Products GROUP BY vend_id; ,网站空间,香港空间,网站空间

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