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

posted on 2020-09-30 14:11  anpeiyong  阅读(192)  评论(0编辑  收藏  举报

导航