Can anyone tell me the query to check whether a string is a number(double precision). It should return true if the string is number. else it should return false.
con
select s1 ~ '^\d+$'; select s2 ~ '^\d+$';