I want to determine if a value is integer (like TryParse in .NET). Unfortunatelly ISNUMERIC does not fit me because I want to parse only integers a
TryParse
ISNUMERIC
I am not a Pro in SQL but what about checking if it is devideable by 1 ? For me it does the job.
SELECT * FROM table WHERE fieldname % 1 = 0