SQL---Type Conversion in Expression Evaluation(类型转换)
1、mysql自动转换类型
1.1、string -> number
select 1+'1' 结果:2
1.2、number -> string
SELECT CONCAT(2,' test'); 结果:2 test
2、cast()
CAST(expr AS type)
3、convert
不同字符集之间转换数据 CONVERT(expr USING transcoding_name) CONVERT(expr,type)
4、binary
Cast a string to a binary string