在 MySQL 中轉換為整數

Preet Sanghavi 2023年1月3日
在 MySQL 中轉換為整數

在本教程中,我們旨在探索如何在 MySQL 中將資料型別轉換為 int

MySQL 中的 CAST 方法幫助我們將特定值轉換為指定的資料型別。這通常用於將資料型別從一種型別更改為另一種型別。

在開發和生產環境中,確保將正確和有效的資料型別分配給列可能至關重要。

讓我們瞭解這種方法是如何工作的。

但是,在開始之前,我們建立一個虛擬資料集來使用。

-- create the table student_details
CREATE TABLE student_details(
  stu_id int,
  stu_firstName varchar(255) DEFAULT NULL,
  stu_lastName varchar(255) DEFAULT NULL,
  primary key(stu_id)
);
-- insert rows to the table student_details
INSERT INTO student_details(stu_id,stu_firstName,stu_lastName) 
 VALUES(1,"Preet","Sanghavi"),
 (2,"Rich","John"),
 (3,"Veron","Brow"),
 (4,"Geo","Jos"),
 (5,"Hash","Shah"),
 (6,"Sachin","Parker"),
 (7,"David","Miller");

MySQL 中的 CAST

CAST 技術的基本語法如下所示。

SELECT CAST(column_name) AS data_type FROM name_of_table;

正如我們所看到的,在上述查詢中,column_name 是指我們打算更改或分配資料型別的列的名稱,顯示為 data_type。更改將反映在上述查詢中名為 name_of_table 的表中。

現在讓我們嘗試將 stu_id 列從浮點值轉換為整數值。這可以如下進行。

SELECT CAST(stu_id as UNSIGNED) as casted_values FROM student_details;

上述程式碼將 stu_id 列轉換為 student_details 表中的 UNSIGNED 整數值。上述程式碼的輸出如下:

casted_values
1
2
3
4
5
6
7
注意
在上述程式碼中,我們在 MySQL 中使用別名 casted_values 和 as AS 關鍵字。

因此,藉助 CAST 技術,我們可以有效地將不同的資料型別分配給 MySQL 中表的特定列。

作者: Preet Sanghavi
Preet Sanghavi avatar Preet Sanghavi avatar

Preet writes his thoughts about programming in a simplified manner to help others learn better. With thorough research, his articles offer descriptive and easy to understand solutions.

LinkedIn GitHub

相關文章 - MySQL Integer