[Solved] String or binary data would be truncated IN SQL Server Management Studio [closed]
There are some issue with your insert statement The column ZID is INT and you are passing 12 as string like ’12’ you can remove ‘ but it won’t give an error. The column CID is Varchar(2) and you are trying to insert 3 character string ‘ASD’ it will give a data truncation error. ie … Read more