SQL BIN 函数

一、SQL BIN 函数 语法

BIN 是一个 SQL 函数,它将给定的十进制数转换为其等效的二进制数。如果在函数中传递了 NULL,则此函数返回 NULL。

SQL BIN 函数 语法:

SELECT BIN(Decimal_Number) AS Alias_Name;  

在 BIN 语法中,我们必须传递我们想要找到其二进制等价物的十进制数。

在结构化查询语言中,我们还可以对表的列使用 BIN 函数,如下块所示:

SELECT BIN(column_Name) AS Alias_Name FROM Table_Name;  

在这种语法中,我们必须定义要在其上执行 BIN 函数的表的名称和列。

二、SQL BIN 函数 示例

示例 1:此示例返回指定数字的二进制表示:

SELECT BIN(101) AS Binary_of_101;  

输出结果为:

Binary_of_101
1100101

示例 2:此示例返回指定数字的二进制表示:

SELECT BIN(2) AS Binary_of_2;  

输出结果为:

Binary_of_2
10

示例 3:此示例返回 8 的二进制表示:

SELECT BIN(8) AS Binary_of_8;  

输出结果为:

Binary_of_8
1000

示例 4:此示例返回 255 的二进制表示:

SELECT BIN(255) AS Binary_of_255;  

输出结果为:

Binary_of_255
11111111

示例 5:此示例返回 NULL 的二进制表示:

SELECT BIN(NULL) AS Binary_of_NULL;

输出结果为:

Binary_of_NUL
NULL

示例 6:此示例返回 NULL 的二进制表示:

SELECT BIN(21) AS 21, BIN(22) AS 22, BIN(23) AS 23, BIN(24) AS 24, BIN(25) AS 25, BIN(26) AS 26, BIN(27) AS 27, BIN(28) AS 28, BIN(29) AS 29, BIN(30) AS 30;

输出结果为:

21 22 23 24 25 26 27 28 29 30
10101 10110 10111 11000 11001 11010 11011 11100 11101 11110

示例 7:此示例对 SQL 表使用 BIN 函数。

在这个例子中,我们将创建一个新表,我们将通过它对表的列执行 BIN 函数:

下面显示了在 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 查询将 BIN 函数与上述 Product_Details 表的 Product_Quantity 列一起使用:

SELECT Product_ID, BIN(Product_ID) AS Binary_of_Product_ID FROM Product_Details; 

此查询显示每个产品的产品 ID 的二进制表示。

输出结果为:

Product_ID Binary_of_Product_ID
104 1101000
202 11001010
103 1100111
111 1101111
210 11010010
212 11010100
112 1110000

查询 2:以下 SELECT 查询将 BIN 函数与上述 Product_Details 表的 Purchasing_Price 和 Selling_Price 列一起使用:

SELECT Purchasing_Price, BIN(Purchasing_Price) AS Binary_of_PurchasingPrice, Selling_Price, BIN(Selling_Price) AS Binary_of_SellingPrice FROM Product_Details; 

此查询显示每个产品的购买和销售价格的二进制表示。

输出结果为:

Purchasing_Price Binary_of_PurchasingPrice Selling_Price Binary_of_SellingPrice
945 1110110001 NULL NULL
45 101101 75 1001011
25 11001 NULL NULL
5 101 15 1111
50 110010 70 1000110
110 1101110 250 11111010
550 1000100110 835 1101000011

查询 3:以下 SELECT 查询将 BIN 函数与上述 Product_Details 表的 Product_Rating 列一起使用:

SELECT BIN(Product_Rating) AS Binary_of_productrating FROM Product_Details;  

此查询显示上表中每个产品评级的二进制表示。

输出结果为:

Product_Rating Binary_of_productrating
NULL NULL
5 101
4 100
9 1001
NULL NULL
4 100
NULL NULL

 

热门文章

优秀文章