MySQL CAST() 함수
❮ MySQL 기능
예시
값을 DATE 데이터 유형으로 변환:
SELECT
CAST("2017-08-29" AS DATE);
정의 및 사용
CAST() 함수는 값(모든 유형)을 지정된 데이터 유형으로 변환합니다.
팁: CONVERT()
함수 도 참조하십시오 .
통사론
CAST(value AS datatype)
매개변수 값
Parameter |
Description |
value |
Required. The value to convert |
datatype |
Required. The datatype to convert to. Can be one of the following:
Value |
Description |
DATE |
Converts value to DATE. Format: "YYYY-MM-DD" |
DATETIME |
Converts value to DATETIME. Format: "YYYY-MM-DD HH:MM:SS" |
DECIMAL |
Converts value to DECIMAL. Use the optional M and D parameters
to specify the maximum number of digits (M) and the number of digits
following the decimal point (D). |
TIME |
Converts value to TIME. Format: "HH:MM:SS" |
CHAR |
Converts value to CHAR (a fixed length string) |
NCHAR |
Converts value to NCHAR (like CHAR, but produces a string with
the national character set) |
SIGNED |
Converts value to SIGNED (a signed 64-bit integer) |
UNSIGNED |
Converts value to UNSIGNED (an unsigned 64-bit integer) |
BINARY |
Converts value to BINARY (a binary string) |
|
기술적 세부 사항
더 많은 예
예시
값을 CHAR 데이터 유형으로 변환:
SELECT CAST(150 AS CHAR);
예시
값을 TIME 데이터 유형으로 변환:
SELECT CAST("14:06:10" AS TIME);
예시
값을 SIGNED 데이터 유형으로 변환합니다.
SELECT CAST(5-10 AS SIGNED);
❮ MySQL 기능