SQL OCT 函数

一、SQL OCT 函数 语法

OCT函数 是一个 SQL 字符串函数,它将给定的十进制数转换为其等效的八进制数。

SELECT OCT(Decimal_Number) AS Alias_Name;  

在 OCT 语法中,我们必须传递我们想要找到其八进制等效值的十进制数。

在SQL语言中,我们还可以对表的列使用 OCT 函数,如下块所示:

SELECT OCT(column_Name) AS Alias_Name FROM Table_Name; 

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

二、SQL OCT 函数 示例

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

SELECT OCT(101) AS octal_of_101;  

输出结果为:

octal_of_101
145

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

SELECT OCT(2) AS octal_of_2;  

输出结果为:

octal_of_2
2

示例 3:此示例返回 8 的表示:

SELECT OCT(8) AS octal_of_8;  

输出结果为:

octal_of_8
10

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

SELECT OCT(255) AS octal_of_255;  

输出结果为:

octal_of_255
377

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

SELECT OCT(NULL) AS octal_of_NULL;  

输出结果为:

octal_of_NUL
NULL

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

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

输出结果为:

21 22 23 24 25 26 27 28 29 30
25 26 27 30 31 32 33 34 35 36

示例 7:此示例将 OCT 函数与 SQL 表一起使用。

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

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

SELECT Product_ID, OCT(Product_ID) AS octal_of_Product_ID FROM Product_Details;  

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

输出结果为:

Product_ID octal_of_Product_ID
104 150
202 312
103 147
111 157
210 322
212 324
112 160

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

SELECT Selling_Price, OCT(Selling_Price) AS octal_of_SellingPrice FROM Product_Details;  

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

输出结果为:

Selling_Price octal_of_SellingPrice
NULL NULL
75 113
NULL NULL
15 17
70 106
250 372
835 1503

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

SELECT OCT(Product_Rating) AS octal_of_productrating FROM Product_Details;  

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

输出结果为:

Product_Rating octal_of_productrating
NULL NULL
5 5
4 4
9 11
NULL NULL
4 4
NULL NULL

热门文章

优秀文章