返回 "Products" 表中产品的数量:
SELECT COUNT(ProductID) AS NumberOfProducts FROM Products;
COUNT() 函数返回select查询返回的记录数。
COUNT()
注意:不计算空值。
COUNT (expression )