MySQL 타입변환 Cast
CAST(데이터 AS 타입)
https://dev.mysql.com/doc/refman/8.0/en/cast-functions.html#function_cast
예제
SET @t := '10';
// cast to unsigned int
SELECT CAST(@t AS UNSIGNED);
// cast to char
SELECT CAST(@t AS CHAR);
MySQL 타입변환 CONVERT
CONVERT(데이터, 타입)
https://dev.mysql.com/doc/refman/8.0/en/cast-functions.html#function_convert
예제
SET @t := '10';
// cast to unsigned int
SELECT CONVERT(@t, UNSIGNED);
// cast to char
SELECT CONVERT(@t, CHAR);
반응형
'MySQL' 카테고리의 다른 글
MySQL JSON 데이터 사용하기 (JSON_TABLE, JSON_OBJECT, JSON_ARRAY) (1) | 2023.12.15 |
---|---|
데이터베이스 인덱스란? 클러스터 인덱스와 넌클러스터 인덱스 개념 차이점 (1) | 2023.11.03 |
MySQL Json 사용법 Json table SELECT, INSERT, UPDATE 방법 (0) | 2023.10.06 |
MySQL date add, diff, 시간 계산 (더하기, 빼기) 정리 (0) | 2023.08.18 |