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