0% found this document useful (0 votes)
44 views17 pages

Release Date: August, 2015 Updates

This document provides an update to the SELECT clause syntax in SQL. The SELECT clause allows you to select columns, expressions, and tables. It supports optional keywords like DISTINCT and TOP/LIMIT and uses brackets [ ] to denote optional parts and pipes | to denote "or" choices. Date values must be enclosed in single quotes and can be formatted with dashes or slashes separating the day, month, and 4-digit year. The month should be abbreviated to three characters in uppercase, lowercase, or initial capitalization.

Uploaded by

AKASH JAISWAL
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views17 pages

Release Date: August, 2015 Updates

This document provides an update to the SELECT clause syntax in SQL. The SELECT clause allows you to select columns, expressions, and tables. It supports optional keywords like DISTINCT and TOP/LIMIT and uses brackets [ ] to denote optional parts and pipes | to denote "or" choices. Date values must be enclosed in single quotes and can be formatted with dashes or slashes separating the day, month, and 4-digit year. The month should be abbreviated to three characters in uppercase, lowercase, or initial capitalization.

Uploaded by

AKASH JAISWAL
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Release Date: August, 2015

Updates:
3
4
SELECT clause general syntax: The [ ] mean this is optional. The | means "or."

5
6
7
8
9
10
11
12
13
Like character strings, Date values must also be enclosed in single quotes.
The acceptable formats for date values are:
Use either a dash or a forward slash to separate day, month and year, e.g. '20-MAR-1999', '20/MAR/1999'.
Use 3 character month, in either upper, lower or initcap format, e.g. '20/MAR/1999', '20/mar/1999',
'20/Mar/1999'.
Use 4 digit year values.

14
15
16

You might also like