Skip to content

Commit 6e6a295

Browse files
committed
Fix typos
1 parent 0f414cf commit 6e6a295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DATE_UDF/ReadMe.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Legacy databases on the IBM i stored dates in numeric (or character) fields. Doi
66

77
SELECT ... FROM CUSTMAST WHERE DATE_YMD(DUEDATE) <= CURDATE() - 9O DAYS
88

9-
The most common formats where month-day-year (in the USA) and year-month day. Often there was no century included. There was also an IBM sanctioned format, CYMD, where the C was a 1-digit century, with 0 meaning 19, and 1 meaning 20.
9+
The most common formats where month-day-year (in the USA) and year-month-day. Often there was no century included. There was also an IBM sanctioned format, CYMD, where the C was a 1-digit century, with 0 meaning 19, and 1 meaning 20.
1010

1111
## Development
1212

@@ -21,7 +21,7 @@ However...
2121

2222
## Functions
2323

24-
There are three functions,each taking a numeric fieldas input. *Note:* Newer versions of SQL will automatically cast character fields to numeric, otherwise you have to cast to numeric manually.
24+
There are three functions,each taking a numeric field as input. *Note:* Newer versions of SQL will automatically cast character fields to numeric, otherwise you have to cast to numeric manually.
2525

2626
* **DATE_YMD** to convert dates in either YYMMDD or CCYYMMD format.
2727
* Example: 980129 or 19980129.

0 commit comments

Comments
 (0)