I'm trying the following instruction and I don't understand the TRUE value returned :
SELECT '1' ~ '(0[1-9])|[10-15]' ;
?column?
boolean
----------
t
If I make it simplier again, I still don't understand the value returned :
SELECT '1' ~ '[10-15]' ;
?column?
boolean
----------
t
Thank you for helping !
Thomas
SELECT '1' ~ '(0[1-9])|(1[0-5])';