SQL convert usage

Source: Internet
Author: User

Convert function [data type conversion]

--------------------------------------------------------------------------------

Function
Returns the expression converted to the provided data type.

Syntax
Convert (data type, expression [, format-style])

Parameters
The data type expression is converted to the data type.

The expression to be converted.

Format-style: for the conversion process that converts a string to the date or time data type and the opposite, format-style is the style that describes the date format string to be used.Code. The value of the format-style parameter has the following meanings: Century (yy) and Century (yyyy) Output

Without Century digital (yy) Digital Century (YYYY) Standard Input/Output **
- 0 or 100 (*) Default Value Mon dd yyyy hh: miam (or pm)
1 101 USA Mm/DD/YYYY
2 102 ANSI YY. Mm. dd
3 103 UK/France Dd/mm/yy
4 104 Germany Dd. mm. yy
5 105 Italy DD-mm-yy
6 106 - Dd mon YY
7 107 - Mon DD, YY
8 108 - Hh: mm: SS
- 9 or 109 (*) Default Value + millisecond Mon dd yyyy hh: MI: SS: mmmam (or pm)
10 110 USA Mm-dd-yy
11 111 Japan YY/MM/dd
12 112 ISO Yymmdd
- 13 or 113 (*) European default value + millisecond Dd mon yyyy hh: mm: SS: Mmm (24 h)
14 114 - Hh: MI: SS: Mmm (24 h)
- 20 or 120 (*) ODBC specifications Yyyy-mm-dd hh: mm: ss [. fff]
- 21 or 121 (*) ODBC specifications (in milliseconds) Yyyy-mm-dd hh: mm: ss [. fff]
- 126 (***) Iso8601 Yyyy-mm-dd thh: mm: SS: Mmm (excluding spaces)
- 130 * Kuwait Dd mon yyyy hh: MI: SS: mmmam
- 131 * Kuwait Dd/mm/yy hh: MI: SS: mmmam

If the format-style parameter is not provided, the style code 0 is used.

For a description of the styles generated by each output symbol (such as MMM), see date_format option [compatibility].

Standards and compatibility
SQL/92 vendor extension.

SQL/99 vendor extensions.

Sybase is compatible with Adaptive Server Enterprise.

For more information, see
Cast function [data type conversion]

The following statements describe the Integer Conversion and return value 5:

Select convert (integer, 5.2)

 

Convert
Explicitly converts a data type expression to another data type. Because some requirements often use different date formats, the following can be found in
Format the date in SQL Server.

SQL Server supports the use of KuwaitAlgorithmData format in the Arabic style.

In the table, the two columns on the left represent converting datetime or smalldatetime to the style value of the character data. Add 100 to the style value to obtain the four-digit year (yyyy) of the century ).

* The default value (Style 0, 100, 9, 109, 13, 113, 20, 120, 21, or 121) always returns century digits (yyyy ).
** Input when converted to datetime; output when converted to character data.
* ** It is specially used for XML. For the conversion from datetime or smalldatetime to character data, the output format is shown in the table. For data conversion from float, money, smallmoney to character, the output is equivalent to style 2. For data conversion from real to character, the output is equivalent to style 1.

 

Important by default, SQL Server interprets two-digit years based on the end year 2049. That is, the year 49 with two digits is interpreted as 2049, and the year 50 with two digits is interpreted as 1950. Many Client ApplicationsProgram(For example, client applications based on OLE automation objects) Use 2030 as the end year. SQL Server provides a configuration option ("") to change the end year used by SQL Server and process the date in a consistent manner. However, the safest way is to specify a four-digit year.

 

When converting from smalldatetime to character data, the style that contains seconds or milliseconds will display zero at these locations. When converting from the datetime or smalldatetime value, you can use the appropriate Char or varchar data type length to cut off the date part that is not required.

The following table shows the style values when converting from float or real to character data.

Value output
0 (default) is a maximum of six digits. Use scientific notation as needed.
1 is always an 8-bit value. Always use scientific notation.
2 is always a 16-bit value. Always use scientific notation.

 

In the following table, the left column indicates the style value when converting from money or smallmoney to character data.

Value output
0 (default value) each three digits on the left of the decimal point are not separated by commas. Two digits on the right of the decimal point, for example, 4235.98.
1. Each three digits on the left of the decimal point are separated by commas (,). The two digits on the right of the decimal point, for example, 3,510.92.
2. Each three digits on the left of the decimal point are not separated by commas. Four digits are used on the right of the decimal point, for example, 4235.9819.

Use convert:

Convert (data_type [(length)], expression [, style])

Select convert (varchar, getdate (), 120)
11:06:08

Select Replace (replace (convert (varchar, getdate (), 120 ),\'-\',\'\'),\'\', \'\'),\':\',\'\')
20040912110608

Statement and query result:
Select convert (varchar (100), getdate (), 0): 05 16 2006 AM
Select convert (varchar (100), getdate (), 1): 05/16/06
Select convert (varchar (100), getdate (), 2): 06.05.16
Select convert (varchar (100), getdate (), 3): 16/05/06
Select convert (varchar (100), getdate (), 4): 16.05.06
Select convert (varchar (100), getdate (), 5): 16-05-06
Select convert (varchar (100), getdate (), 6): 16 05 06
Select convert (varchar (100), getdate (), 7): 05 16, 06
Select convert (varchar (100), getdate (), 8): 10:57:46
Select convert (varchar (100), getdate (), 9): 05 16 2006 10: 57: 46: 827am
Select convert (varchar (100), getdate (), 10): 05-16-06
Select convert (varchar (100), getdate (), 11): 06/05/16
Select convert (varchar (100), getdate (), 12): 060516
Select convert (varchar (100), getdate (), 13): 16 05 2006 10: 57: 46: 937
Select convert (varchar (100), getdate (), 14): 10: 57: 46: 967
Select convert (varchar (100), getdate (), 20): 10:57:47
Select convert (varchar (100), getdate (), 21): 10:57:47. 157
Select convert (varchar (100), getdate (), 22): 05/16/06 10:57:47 AM
Select convert (varchar (100), getdate (), 23): 2006-05-16 <--------------
Select convert (varchar (100), getdate (), 24): 10:57:47
Select convert (varchar (100), getdate (), 25): 10:57:47. 250
Select convert (varchar (100), getdate (), 100): 05 16 2006 AM
Select convert (varchar (100), getdate (), 101): 05/16/2006
Select convert (varchar (100), getdate (), 102): 2006.05.16
Select convert (varchar (100), getdate (), 103): 16/05/2006
Select convert (varchar (100), getdate (), 104): 16.05.2006
Select convert (varchar (100), getdate (), 105): 16-05-2006
Select convert (varchar (100), getdate (), 106): 16 05 2006
Select convert (varchar (100), getdate (), 107): 05 16,200 6
Select convert (varchar (100), getdate (), 108): 10:57:49
Select convert (varchar (100), getdate (), 109): 05 16 2006 10: 57: 49: 437am
Select convert (varchar (100), getdate (), 110): 05-16-2006
Select convert (varchar (100), getdate (), 111): 2006/05/16
Select convert (varchar (100), getdate (), 112): 20060516
Select convert (varchar (100), getdate (), 113): 16 05 2006 10: 57: 49: 513
Select convert (varchar (100), getdate (), 114): 10: 57: 49: 547
Select convert (varchar (100), getdate (), 120): 10:57:49
Select convert (varchar (100), getdate (), 121): 10:57:49. 700
Select convert (varchar (100), getdate (), 126): 2006-05-16t10: 57: 49.827
Select convert (varchar (100), getdate (), 130): 18 ???? ?????? 1427 10: 57: 49: 907am
Select convert (varchar (100), getdate (), 131): 18/04/1427 10: 57: 49: 920am

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.