数据库把字符串变为时间格式如:20210101变为2021-01-01

方式一

SELECT to_date( '20210101', 'yyyyMMdd' )

数据库把字符串变为时间格式如:20210101变为2021-01-01_第1张图片

方式二

	select to_date(substr('20180312',1,4)||'-'||substr('20180312',5,2)||'-'||substr('20180312',7,2),'yyyy-MM-dd')

在这里插入图片描述

方式三

SELECT '20210728'::date AS occur_dt 

数据库把字符串变为时间格式如:20210101变为2021-01-01_第2张图片

你可能感兴趣的:(java,postgresql,postgresql,java)