Collections:
CONVERT() - Converting Character Strings to Numeric Values in SQL Server
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL?
✍: FYIcenter.com
Sometimes you need to convert numeric values enclosed in character strings back to numeric values by using the CONVERT() function.
When converting character strings to values with CONVERT(), you need to remember two rules:
The tutorial exercise below shows you how to use the CONVERT() function to convert strings to values:
SELECT CONVERT(NUMERIC(10,5), ' 12345.12 '); GO 12345.12000 -- Input does not match the target data type SELECT CONVERT(INT, '12345.12'); GO Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '12345.12' to data type int. -- Input does not match the target data type SELECT CONVERT(NUMERIC(10,5), '12345.12E+00'); GO Msg 8114, Level 16, State 5, Line 1 Error converting data type varchar to numeric. -- Double conversion works SELECT CONVERT(NUMERIC(10,5), CONVERT(FLOAT(24), ' 12345.12E+00 ')); GO 12345.12012 SELECT CONVERT(FLOAT(24), ' 12345.12E+00 '); GO 12345.12
⇒ Overflow Errors on Converting Big Values to Integers in SQL Server
⇐ CONVERT() - Converting Numeric Expression Data Types in SQL Server
⇑ Numeric Expressions and Functions in SQL Server Transact-SQL
2017-03-22, 4362🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...