检查字符串是否是Postgresql的日期

前端之家收集整理的这篇文章主要介绍了检查字符串是否是Postgresql的日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
postgresql中是否有一个函数返回boolean,无论给定的字符串是否是MSsql的日期

ISDATE(“2014年1月1日”)

谢谢!

您可以创建一个功能
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)
原文链接:https://www.f2er.com/postgresql/192785.html

猜你在找的Postgre SQL相关文章