Hallo,
Under MS SQL there is this syntax:
LIKE '[0-9]%'
I've tried this but it gave me an empty result.
What is the equivalent of that in MySQL?
The reason is, I have a field that contains alphabets (words), empty, marks (?,',^, etc) and numbers. I only want to select the ones with numbers only, otherwise it has to be replaced with zero.
Any idea anyone?
Under MS SQL there is this syntax:
LIKE '[0-9]%'
I've tried this but it gave me an empty result.
What is the equivalent of that in MySQL?
The reason is, I have a field that contains alphabets (words), empty, marks (?,',^, etc) and numbers. I only want to select the ones with numbers only, otherwise it has to be replaced with zero.
Any idea anyone?