CONVERT() Function Styles : Convert « Data Type « SQL Server / T-SQL

SQL Server / T-SQL
1. Aggregate Functions
2. Analytical Functions
3. Constraints
4. Cursor
5. Data Set
6. Data Type
7. Database
8. Date Timezone
9. Index
10. Insert Delete Update
11. Math Functions
12. Select Query
13. Sequence
14. Store Procedure Function
15. String Functions
16. Subquery
17. System
18. Table
19. Table Joins
20. Transact SQL
21. Transaction
22. Trigger
23. View
24. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL » Data Type » Convert 
CONVERT() Function Styles

 


Without Century     With century      Standard                          Input/Output*
-                   or 100          Default                           mon dd yyyy hh:miAM (or PM)
1                   101               USA                               mm/dd/yy
2                   102               ANSI                              yy.mm.dd
3                   103               British/French                    dd/mm/yy
4                   104               German                            dd.mm.yy
5                   105               Italian                           dd-mm-yy
6                   106                                                 dd mon yy
7                   107                                                 mon dd, yy
8                   108                                                 hh:mm:ss
                    or 109          Default + milliseconds            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         Europe default + milliseconds     dd mon yyyy hh:mm:ss:mmm(24h)
14                  114                                                 hh:mi:ss:mmm(24h)
                    20 or 120         ODBC                              yyyy-mm-dd hh:mi:ss(24h)
                    21 or 121         ODBC with milliseconds            yyyy-mm-dd hh:mi:ss.mmm(24h)
                    126               ISO8601                           yyyy-mm-ddThh:mi:ss.mmm (no spaces)
                    130               Kuwaiti                           dd mon yyyyhh:mi:ss.mmmAM
                    131               Kuwaiti                           dd/mm/yyyy hh:mi:ss.mmmAM


 
Related examples in the same category
1. CONVERT function syntax: CONVERT(<target data type>, <expression to be converted>, <style>)
2. Format money (currency)
3. CONVERT(varchar,Date,101)
4. SELECT CONVERT(VarChar(50), @Num, 2)
5. Combine CONVERT() and DATEADD() to format
6. SELECT CONVERT(VarChar(20), 'April 29, 1988')
7. Conversion with CONVERT function for computated value with numbers in list
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.