Is there some way to do something like this ?? :
crate table t (a varchar(12),b date);
select (a::date-b) from t;
ERROR: cannot cast type 'varchar' to 'date'.
Thanks ....
-- Fer