SQL COUNT函数
COUNT是SQL中的一种聚合函数,用于返回表中的总行数。
COUNT函数的语法
在结构化查询语言中,我们使用COUNT函数与表的列一起使用,如下所示:
SELECT COUNT(column_Name) AS Alias_Name FROM Table_Name;
在这个语法中,我们必须定义我们想要执行COUNT函数的表的名称和列。
COUNT函数的例子
在这里,我们将通过这个新的表来执行COUNT函数,并使用表的列:
下面显示了在SQL中创建新表的语法:
CREATE TABLE Name_of_New_Table
(
First_Column_of_table Data Type (character_size of First Column),
Second_Column_of_table Data Type (character_size of the Second column ),
Third_Column_of_table Data Type (character_size of the Third column),
.......,
Last_Column_of_table Data Type (character_size of the Last column)
);
下面的CREATE语句创建了 Product_Details 表,用于存储产品的价格和数量:
CREATE TABLE Product_Details
(
Product_ID INT NOT NULL,
Product_Name Varchar(50),
Product_Quantity INT,
Purchasing_Price INT,
Selling_Price INT,
Release_Date Date,
Product_Rating INT
);
以下多个INSERT查询将产品及其销售和采购价格的记录插入到Product_Details表中:
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (104, P1, 10.250, 945, NULL, 2022-04-30, NULL);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (202, P4, 15.500, 45, 75, 2022-01-28, 5);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (103, P2, 18.250, 25, NULL, 2022-02-18, 4);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (111, P7, 25.250, 5, 15, 2021-12-25, 9);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (210, P6, 15.500, 50, 70, 2021-10-15, NULL);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (212, P8, 19.750, 110, 250, 2022-01-28, 4);
INSERT INTO Product_Details (Product_ID, Product_Name, Product_ Quantity Purchasing_Price, Selling_Price, Release_Date, Product_Rating) VALUES (112, P10, 10.250, 550, 835, 2022-04-11, NULL);
下面的SELECT语句显示了上述 Product_Details 表中插入的记录:
SELECT * FROM Product_Details;
Product_ID | Product_Name | Product_Quantity | Purchasing_Price | Selling_Price | Release_Date | Product_Rating |
---|---|---|---|---|---|---|
104 | P1 | 10.250 | 945 | NULL | 2022-04-30 | NULL |
202 | P4 | 15.500 | 45 | 75 | 2022-01-28 | 5 |
103 | P2 | 18.250 | 25 | NULL | 2022-02-18 | 4 |
111 | P7 | 25.250 | 5 | 15 | 2021-12-25 | 9 |
210 | P6 | 15.500 | 50 | 70 | 2021-10-15 | NULL |
212 | P8 | 19.750 | 110 | 250 | 2022-01-28 | 4 |
112 | P10 | 10.250 | 550 | 835 | 2022-04-11 | NULL |
查询1: 下面的SELECT查询使用了上面Product_Details表中的Product_Quantity列的COUNT函数:
SELECT COUNT(Product_Quantity) AS Total_Number_ofproduct FROM Product_Details;
输出:
Total_Number_ofproduct
---
7
查询 2: 下面的 SELECT 查询使用了以上 Product_Details 表中 Selling_Price 列的 COUNT 函数:
SELECT COUNT(Selling_Price) AS Total_Number_ofsellingpriceproducts FROM Product_Details;
这个查询的结果显示为5,因为这一列包含两个NULL值。
输出结果:
Total_Number_ofsellingpriceproducts
---
5
查询3: 以下SELECT查询使用了上述Product_Details表中的Product_Rating列的COUNT函数:
SELECT COUNT(Product_Rating) AS total_Number_of_productrating FROM Product_Details;
这个查询结果显示为4,因为这一列包含了三个NULL值。
输出:
Total_Number_ofproductrating
---
4
WHERE子句的COUNT函数
我们也可以在COUNT函数中使用WHERE子句,该子句根据筛选后的行返回行数。
使用WHERE子句的COUNT函数的语法如下:
SELECT COUNT(column_Name) AS Alias_Name FROM Table_Name WHERE Condition;
查询 1: 以下 SELECT 查询在上述 Product_Details 表中使用了带有 WHERE 子句的 COUNT 函数:
SELECT COUNT(Product_Quantity) AS Total_Number_ofproduct>200 FROM Product_Details WHERE Product_ID > 200;
这个查询计算了上表中产品ID大于200的产品数量。
输出结果:
Total_Number_ofproduct>200
---
3
查询2: 以下SELECT查询在上面的Product_Details表中使用了带有WHERE子句的COUNT函数:
SELECT COUNT(Release_Date) AS Total_Number_ofdate FROM Product_Details WHERE Release_Date = 2022-01-28;
这个查询用于计算那些在2022年01月28日发布的产品。
输出:
Total_Number_ofdate
---
2
计数函数与DISTINCT子句
我们也可以在COUNT函数中使用DISTINCT子句,它只计算表中列的不重复值。
使用COUNT函数和DISTINCT子句的语法如下:
SELECT COUNT(DISTINCT (column_Name)) AS Alias_Name FROM Table_Name WHERE Condition;
查询1: 以下SELECT查询在上面的Product_Details表中使用了带有DISTINCT子句的COUNT函数:
SELECT COUNT(DISTINCT(Product_Quantity)) AS Total_Number_ofproduct FROM Product_Details;
该查询根据product_quantity列的不同值来计算产品数量。
输出:
Total_Number_ofproduct
---
5
查询3: 下面的SELECT查询使用了上面Product_Details表中的COUNT函数和DISTINCT子句:
SELECT COUNT(DISTINCT(Product_Rating)) AS total_Number_of_distinctproductrating FROM Product_Details;
这个查询结果显示三个结果,因为这一列包含三个NULL值和两个相同的值。
输出:
Total_Number_ofdistinctproductrating
---
3