检查字符串是否为日期 Postgresql

2024-03-17

有没有什么功能PostgreSQL返回Boolean给定的字符串是否是日期,就像ISDATE()在 MSSQL 中?

ISDATE("January 1, 2014")

您可以创建一个函数:

create or replace function is_date(s varchar) returns boolean as $$
begin
  perform s::date;
  return true;
exception when others then
  return false;
end;
$$ language plpgsql;

然后,您可以像这样使用它:

postgres=# select is_date('January 1, 2014');
 is_date
---------
 t
(1 row)

postgres=# select is_date('20140101');
 is_date
---------
 t
(1 row)

postgres=# select is_date('20140199');
 is_date
---------
 f
(1 row)
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

检查字符串是否为日期 Postgresql 的相关文章

随机推荐