Conversion failed when converting the nvarchar value to data type int - Error Message
问题 My Query Select * from MyTable The table consists 300k rows. It runs for 200k+ rows and this error pops up. How to handle this to get the full data? Does MyTable have any computed columns? Table consists of a computed column with the name IsExceeds which is given below for your reference. This is the computed column formula: (CONVERT([int],[Pro_PCT])-CONVERT([int],replace([Max_Off],'%',''))) Field Definitions: [Pro_PCT] [nvarchar](50) NULL, [Max_Off] [nvarchar](50) NULL, [IsExceeds] AS