Reputation: 799
I want to find all rows in which a column contains only digits.
The first idea was using LIKE [0-9]%
, but in fact this matches any strings starting with a digit.
It seems to be a very simple task, but unfortunately I can't find solution
Upvotes: 1
Views: 1852