SQL - 类型转换
Posted 平凡之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL - 类型转换相关的知识,希望对你有一定的参考价值。
类型转换
SELECT numeric ‘10‘ / numeric ‘3‘ AS col_1; -- PG语法
SELECT ‘10‘::numeric/‘3‘::numeric AS col_1; -- PG语法
SELECT CURRENT_DATE::varchar(20); -- PG语法
select cast(‘10‘ as numeric) / cast (‘3‘ as numeric) as col_1; -- 标准的SQL语法
-- cast 函数
select substring(cast(‘12345‘ as text), 3, 1);
以上是关于SQL - 类型转换的主要内容,如果未能解决你的问题,请参考以下文章