×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Well that makes sense. I changed it to
DATE(SUBSTR(CHAR(SHIP_DATE),7,2) CONCAT '/' CONCAT
SUBSTR(CHAR(SHIP_DATE),9,2) CONCAT '/' CONCAT
SUBSTR(CHAR(SHIP_DATE),5,2)) AS DATE_SHIPPED
And I got some output.
Thanks
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Brian Johnson
Sent: Wednesday, July 29, 2009 3:46 PM
To: Midrange Systems Technical Discussion
Subject: Re: SQL Date Formatting Issue
On Wed, Jul 29, 2009 at 2:28 PM, Fred Horvat <horvat@xxxxxxxx> wrote:
Another file I am working with has a date field that is defined as variable
V50 as bbYYYYMMDD. The following code gives me blank output.
DATE(SUBSTR(DIGITS(SHIP_DATE),7,2) CONCAT '/' CONCAT
SUBSTR(DIGITS(SHIP_DATE),9,2) CONCAT '/' CONCAT
SUBSTR(DIGITS(SHIP_DATE),5,2)) AS DATE_SHIPPED
DIGITS built-in function converts number to character. But you are feeding
it a character column.
--
Brian Johnson
brian.johnson.mn@xxxxxxxxx
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe,
or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.