does any body knows why when I run this query its is error "Conversion failed when converting the varchar value ',' to data type int."<\font>
0
votes
1 Answers
0
votes
It looks like error from ms sql server. In tsql you can use cast and convert
You should read this: Microsoft SQL Server Management Studio doesn't get OS regional Setting
,is not a valid number/integer? - Lukasz SzozdaSELECT TRY_PARSE(col_name AS INT) FROM tab_name. UseTRY_PARSE(SQL Server 2012+). - Lukasz Szozda