Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

공부

[SQL] 타입 변환 CAST 본문

개발공부

[SQL] 타입 변환 CAST

dfgdfgfdg 2021. 1. 4. 02:42

www.mysqltutorial.org/mysql-cast/

 

MySQL CAST() Function

This tutorial shows you how to use MySQL CAST function to convert a value of any type into a value with a specified type.

www.mysqltutorial.org

 

cast type의 종류

binary

char

signed

date

datetime

time

unsigned

 

예시)

문자를 숫자로 변환
select cast('1' as unsigned) as num
숫자를 문자로 변환
select cast(2 as char(1)) as str

'개발공부' 카테고리의 다른 글

[SQL] 테이블 결합 JOIN  (0) 2021.01.04
[SQL] INSTR, SUBSTR  (0) 2021.01.04
[Vue] 가이드  (0) 2020.12.31
[etc] https와 ssl 인증서  (0) 2020.12.21
[HTML / CSS] table에서 tr에 border넣기  (0) 2020.12.12