SQL DIV函数的使用

SQL DIV函数的使用

DIV是SQL中的一个字符串函数,它返回第一个数字除以第二个数字的商。

DIV函数的语法

SELECT DIV(Number1, Number2) AS Alias_Name;

在DIV语法中,Number1为被除数,Number2为除数。

在结构化查询语言中,我们还可以使用DIV函数来操作表格中的列,如下所示的代码块:

SELECT DIV(Column_Name1, Column_Name2) AS Alias_Name FROM Table_Name;

在该语法中,我们需要定义要执行DIV函数的表的名称和列。

DIV函数示例

示例1: 此示例通过将101除以4来得到商:

SELECT 101 DIV 4 AS Division_of_101by4;

输出:

Division_of_101by4   
---  
25   

示例2: 这个例子把101除以4,并将商返回到result中:

SELECT 2 DIV 2 AS Division_of_2by2;

输出:

Division_of_2by2   
---  
1   

示例3: 该示例将8除以5,并将结果返回为商:

SELECT 8 DIV 5 AS Division_of_8by5;

输出:

Division_of_8by5   
---  
1   

例子4: 这个例子将255除以200,并将商返回结果:

SELECT 255 DIV 200 AS Division_of_255by200;

输出:

Division_of_255by200   
---  
1   

示例5: 这个示例使用了带有SQL表的DIV函数。

在这个示例中,我们将通过这个新表来执行对表列的DIV函数:

以下是在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, 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, 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, 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, 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, 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, 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, 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 945 NULL 2022-04-30 NULL
202 P4 15 45 75 2022-01-28 5
103 P2 18 25 NULL 2022-02-18 4
111 P7 25 5 15 2021-12-25 9
210 P6 15 50 70 2021-10-15 NULL
212 P8 19 110 250 2022-01-28 4
112 P10 10 550 835 2022-04-11 NULL

查询1: 以下SELECT查询使用了上述Product_Details表中Product_Quantity列的DIV函数:

SELECT Product_ID, Product_ID DIV 100 AS Division_of_ProductID_by100 FROM Product_Details;

本查询将每个 product_id 除以 100,并返回除法之后的商。

输出:

Product_ID Division_of_ProductID_by100
104 1
202 2
103 1
111 1
210 2
212 2
112 1

查询2: 下面的SELECT查询使用了DIV函数,并且用了以上Product_Details表中的Purchasing_Price和Selling_Price列:

SELECT Purchasing_Price, Product_Quantity, Purchasing_Price DIV Product_Quantity AS Division_ofpurhcaseprice, Selling_Price, Product_Quantity, Selling_Price DIV Product_Quantity AS Division_of_SellingPrice FROM Product_Details;

这个查询将每个产品的购买价格和销售价格按产品数量进行除法运算,并返回商。

输出:

Purchasing_Price Product_Quantity Division_ofpurhcaseprice Selling_Price Product_Quantity Division_ofsellingprice
945 10 94 NULL 10 -
45 15 3 75 15 5
25 18 1 NULL 18 -
5 25 0 15 25 0
50 15 3 70 15 4
110 19 5 250 19 13
550 10 55 835 10 83

查询3: 以下SELECT查询使用上面Product_Details表的Product_Rating列的DIV函数:

SELECT Product_Quantity DIV 2 AS Division_ofratingby2 FROM Product_Details;

这个查询将产品的每个评分除以2,并返回除法后的商。

输出:

Product_Rating Division_ofratingby2
NULL -
5 2
4 2
9 4
NULL -
4 2
NULL -

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程