I have a table product with a column product id which is string datatype as below.
Product_id
101
102
102a
I would like to know if there is any way to take all values in product_id which cannot fill the condition of integer which is 102a value as it cannot be converted to integer
Query something like
select product_id from product where product_id <> integer
And output should be as
Product_id |
---|
102a |