How to show only real number with SQL Select ?
As example the data in table appear like :
Price
100000
10.0022
99980
0.0005
1.5
25000
0
20.5
The price data type is number.
I try SQL query like this but fail :
SELECT price FROM price_table WHERE price LIKE '%.%';
The query return error :
ERROR: operator does not exist: numeric ~~ unknown