December 2013
Intermediate to advanced
1872 pages
153h 31m
English
The PARSE function can be used to convert any string value to a numeric or to a date and time format only. The syntax is as follows:
PARSE ( string_value AS data_type [ USING culture ] )
The main difference from the standard CONVERT or CAST function is that you can provide a culture option to specify whether the string_value is being passed in a culture-specific format (such as a date or money value). In addition, PARSE handles numeric conversions that CONVERT or CAST will not, such as converting the string '100.00' to the int data type, as shown in the following example:
select convert(int,'100.0')goselect parse('100.00' as int)go/* output convert-----------Msg ...