From 6e6a295bde0411b2dcbedd42afb29e9fc36d34ea Mon Sep 17 00:00:00 2001 From: SJLennon <67484051+SJLennon@users.noreply.github.com> Date: Thu, 20 May 2021 15:27:10 -0400 Subject: [PATCH] Fix typos --- DATE_UDF/ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DATE_UDF/ReadMe.md b/DATE_UDF/ReadMe.md index 81167bd..980fed1 100644 --- a/DATE_UDF/ReadMe.md +++ b/DATE_UDF/ReadMe.md @@ -6,7 +6,7 @@ Legacy databases on the IBM i stored dates in numeric (or character) fields. Doi SELECT ... FROM CUSTMAST WHERE DATE_YMD(DUEDATE) <= CURDATE() - 9O DAYS - 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. + 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. ## Development @@ -21,7 +21,7 @@ However... ## Functions -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. +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. * **DATE_YMD** to convert dates in either YYMMDD or CCYYMMD format. * Example: 980129 or 19980129.