I need to checking a column where numeric or not in SQL Server 2012.
This my case code.
CASE
WHEN ISNUMERIC(CUST_TELE) = 1
THEN CUST_TELE
ELSE NULL
END AS CUSTOMER_CONTACT_NO
But when the '78603D99'
value is reached, it returns 1
which means SQL Server considered this string as numeric.
Why is that?
How to avoid this kind of issues?