SQL Date Format code example

Example 1: sql server convert string to date

Cast( '2011-07-07' as date ) as convertedDate

Example 2: SQL Date Format

SELECT FORMAT(dbo.column, 'M/dd/yyyy')

Example 3: sql server obtener fecha en formato dd/mm/yyyy

convert( datetime, fecha, 103 )

Example 4: sql date format

default date format of my sql - YYYY-MM-DD

Example 5: sql server date field syntax

DATE - format YYYY-MM-DD

Example 6: sql server format datetime to short date

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

Tags:

Sql Example