Avatar of CipherIS
CipherIS
Flag for United States of America asked on

SQL Conversion failed when converting the nvarchar value '3.00' to data type int.

Getting error:  Conversion failed when converting the nvarchar value '3.00' to data type int.

on Field LeadTime. I've tried Cast and Convet and both fail.
SELECT MPN, InternalPN, CONVERT(INT, LeadTimeMin) FROM AustinFullExportTemp WHERE MPN = 'xxxxx'

Open in new window

Microsoft SQL ServerSQL

Avatar of undefined
Last Comment
irudyk

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
irudyk

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
CipherIS

ASKER
Thanks!!!
irudyk

Also, just in case the value in the field is not always numeric text you could use
SELECT MPN, InternalPN, CASE WHEN ISNUMERIC(LeadTimeMin) = 1 THEN CONVERT(INT,CAST(LeadTimeMin AS NUMERIC(10,2))) ELSE 0 END FROM AustinFullExportTemp WHERE MPN = 'xxxxx'

Open in new window

Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes