I was working on a query and found that the ISNUMERIC function in SQL Server is returning 1 for the input '.'
Why would that happen? Why does SQL Server treat that as a numeric?
Am I missing something here?
DECLARE @Input VARCHAR = '.'
SELECT IsNumeric(@Input)