duchovnick
Programmer
Hi,
In my table there's a string type column.
I want it to contain digits only.
I want to see all lines with that string having any other character
but a digit.
I search a code that will do something like
"All charcters" is my "wishfull thinking" And i'd like to ask someone
who is more realistic then i am to tell me what "All characrers"
should be replaced with.
Thanks a lot !
In my table there's a string type column.
I want it to contain digits only.
I want to see all lines with that string having any other character
but a digit.
I search a code that will do something like
Code:
SELECT
myStringCol
WHERE
All characters>='0' AND
all_characters<='9'
who is more realistic then i am to tell me what "All characrers"
should be replaced with.
Thanks a lot !