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

时间:2014-08-19 02:14:16

标签: sql postgresql date

postgresql中是否有一个函数返回boolean,无论给定的字符串是否与MSSQL的日期不同

ISDATE("January 1, 2014")

谢谢!

1 个答案:

答案 0 :(得分:16)

您可以创建一个功能:

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)