|
Loyd Goodbar wrote: > This works with a date datatype > > update spendmsa set > asofdate = '2000-'||strip(char(month(asofdate)))||'-'|| > strip(char(day(asofdate))) I'm interested in this, because I had to do some complicated hacking on an SQL date field just yesterday. I had to initialise an eight-byte character field with a date in the form YYYYMMDD, using the curdate() function to get the current date. I was trying to use char(year(curdate())), char(month(curdate())) and char(day(curdate())) concatenated together, but the result was too long. According to the InfoCenter, year() etc return long integers. So I tried using strip() (or trim()) to remove the leading zeros, which I assume is what you are doing above; but you don't seem to specify '0' as the character to strip. And of course, for months before October and days before the tenth, the results are not what you want. I had to use a series of substring operations, but a solution like the above would have been neater; so what am I not getting? TIA Cheers, Martin. -- Martin McCallion Senior Technical Consultant Work: martin.mccallion@misys.com Home: martin.mccallion@ukonline.co.uk Misys International Banking Systems 1 St George's Road, London, SW19 4DR, UK T +44 (0)20 8486 1951 F +44 (0) 20 8947 3373 www.misys.com This email message is intended for the named recipient only. It may be privileged and/or confidential. If you are not the intended named recipient of this email then you should not copy it or use it for any purpose, nor disclose its contents to any other person. You should contact Misys International Banking Systems as shown below so that we can take appropriate action at no cost to yourself. Misys International Banking Systems Ltd,1 St George's Road, London, SW19 4DR, UK. Email: ibs.postmaster@misys.com. Tel: +44 (0) 20 8879 1188 Fax: +44 (0) 20 8947 3373 Misys International Banking Systems Ltd is registered in England and Wales under company no. 971479
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.