两者都有cast函数,但使用方法完全不同。
1、在mysql中,cast( value as type)
将value的数据类型转换成type类型,其type可以为
- 二进制,同带binary前缀的效果 : BINARY
- 字符型,可带参数 : CHAR()
- 日期 : DATE
- 时间: TIME
- 日期时间型 : DATETIME
- 浮点数 : DECIMAL
- 整数 : SIGNED
- 无符号整数 : UNSIGNED
2、在pgsql中,cast(value as type)
type 为
numberic,text
======type值 查询不到相关资料,若有大神知道,麻烦留言告知,谢谢==========