I see that within MySQL there are Cast() and Convert() functions to create integers from values, but is there any way to check to see if a value is an integer? Something like is_int() in PHP is what I am looking for.
feedback
|
|
I'll assume you want to check a string value. One nice way is the REGEXP operator, matching the string to a regular expression. Simply do
this is reasonably fast. If your field is numeric, just test for
instead. | |||
|
feedback
|
|
Here is the simple solution for it assuming the data type is varchar
It will return true if the year is numeric else false | ||||
|
feedback
|
|
Match it against a regular expression. c.f. http://forums.mysql.com/read.php?60,1907,38488#msg-38488 as quoted below:
Re: IsNumeric() clause in MySQL??
Posted by: kevinclark ()
Date: August 08, 2005 01:01PM
I agree. Here is a function I created for MySQL 5:
CREATE FUNCTION IsNumeric (sIn varchar(1024)) RETURNS tinyint
RETURN sIn REGEXP '^(-|\\+){0,1}([0-9]+\\.[0-9]*|[0-9]*\\.[0-9]+|[0-9]+)$';
This allows for an optional plus/minus sign at the beginning, one optional decimal point, and the rest numeric digits.
| |||
|
feedback
|
|
I have tried using the regular expressions listed above, but they do not work for the following:
The above will return The following will return the right value (i.e.
The above will return However, if you are dealing with strings that have a mix of numbers and letters that begin with a number, you will not get the results you want. REGEXP will interpret the string as a valid number when in fact it is not. | ||||
|
feedback
|