हाँ, यदि आप प्रारूप को जानते हैं और थोड़ा plsql के साथ।
मान लें कि आपके पास 'yyyy-mon-dd hh24:mi:ss'
प्रारूप में दिनांक है ।
create function test_date(d varchar2) return varchar2
is
v_date date;
begin
select to_date(d,'yyyy-mon-dd hh24:mi:ss') into v_date from dual;
return 'Valid';
exception when others then return 'Invalid';
end;
अब आप कर सकते हैं:
select your_date_col, test_date(your_date_col)
from your_table;