0% found this document useful (0 votes)
371 views1 page

Date Format

The document selects a date format variable based on a case statement that evaluates multiple date format options and assigns the variable an integer value of either 4 or a number between 1-14, 100-131, or 126 depending on the date format option matched. It does not provide any other context or details.

Uploaded by

prad280589
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
371 views1 page

Date Format

The document selects a date format variable based on a case statement that evaluates multiple date format options and assigns the variable an integer value of either 4 or a number between 1-14, 100-131, or 126 depending on the date format option matched. It does not provide any other context or details.

Uploaded by

prad280589
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 1

SELECT @DateFormat=CASE WHEN 'mmm dd yyyy hh:mm AM/PM' WHEN 'mm/dd/yy' WHEN 'mm/dd/yyyy' WHEN 'yy.mm.

dd' WHEN 'dd/mm/yy' WHEN 'dd.mm.yy' WHEN 'dd-mm-yy' WHEN 'dd Mmm yy' WHEN 'Mmm dd, yy' WHEN 'hh:mm:ss' WHEN 'yyyy.mm.dd' WHEN 'dd/mm/yyyy' WHEN 'dd.mm.yyyy' WHEN 'dd-mm-yyyy' WHEN 'dd Mmm yyyy' WHEN 'Mmm dd, yyyy' WHEN 'Mmm dd yyyy hh:mm:ss:ms AM/PM' WHEN 'Mmm dd yyyy hh:mi:ss:mmm AM/PM' WHEN 'Mmm dd yy hh:mm:ss:ms AM/PM' WHEN 'mm-dd-yy' WHEN 'mm-dd-yyyy' WHEN 'yy/mm/dd' WHEN 'yyyy/mm/dd' WHEN 'yymmdd' WHEN 'yyyymmdd' WHEN 'dd Mmm yyyy hh:mm:ss:Ms' WHEN 'hh:mm:ss:Ms' WHEN 'yyyy-mm-dd hh:mm:ss' WHEN 'yyyy-mm-dd hh:mm:ss.Ms' WHEN 'yyyy-mm-ddThh:mm:ss.Ms' WHEN 'dd Mmm yyyy hh:mm:ss:ms AM/PM' WHEN 'dd/mm/yy hh:mm:ss:ms AM/PM' WHEN 'RFC822' WHEN 'dd Mmm yyyy hh:mm' THEN 4

THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN THEN

@format 100 1 101 2 3 4 5 6 7 8 102 103 104 105 106 107 9 9 109 10 110 11 111 12 112 113 14 120 121 126 130 131 2

You might also like