Hi,
Is there anyway I can write a query to return results only when the value of a numeric type ends in 5?
Is there a way to use regexp_matches or does price need to be cast as a string or text?
Any help appreciated.
Is there anyway I can write a query to return results only when the value of a numeric type ends in 5?
Code:
Pseudo code:
select * from items where price ~ '5$';
Is there a way to use regexp_matches or does price need to be cast as a string or text?
Any help appreciated.