× 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.


  • Subject: RE: Need SQL MonthName() function - Alternatives?
  • From: Eric DeLong <Eric.DeLong@xxxxxxxxxxxxxxxxx>
  • Date: Fri, 1 Dec 2000 09:26:00 -0600

     Join to a table of Month Names? Table contains MonthNo and 
     MonthName. 
     
     eric.delong@pmsi-services.com


______________________________ Reply Separator
_________________________________
Subject: Need SQL MonthName() function - Alternatives?
Author:  "Walden H. Leverich" <SMTP:WaldenL@TechSoftInc.com> at EXCHANGE
Date:    11/30/00 4:58 PM


All,
     
I know there is the Month() function, but that returns 1-12 not Jan-Dec. I 
want Jan-Dec. I've done the following, but I don't love the solution. Any 
other ideas? Note the CASE statement in the select.
     
-----Begin Code-----
SELECT '<option ' || 'value = "' || trim(char(apajsg)) || '"> ' || 
case(month(APAHDZ)) when 1 then 'Jan' when 2 then 'Feb' when 3 then 
'Mar' when 4 then 'Apr' when 5 then 'May' when 6 then 'June' when 7 
then 'July' when 8 then 'Aug' when 9 then 'Sept' when 10 then 'Oct' 
when 11 then 'Nov' when 12 then 'Dec' end || ' ' || 
trim(char(day(apahdz))) || ' - ' || trim(APAPTX) || ' </option>' FROM 
tsapcpp WHERE apahdz >=current_date
-----End Code-----
     
but I'd prefer
     
-----Begin Code-----
SELECT '<option ' || 'value = "' || trim(char(apajsg)) || '"> ' || 
monthname(APAHDZ) || ' ' || trim(char(day(apahdz))) || ' - ' || 
trim(APAPTX) || ' </option>' FROM tsapcpp WHERE apahdz>=current_date
     
-----End Code-----
     
Ideas?
     
-Walden
     
PS. In case you're wondering, here is the resultset:
     
String Expression
<option value = "1"> Dec 4 - Dr. Frank Soltis </option> 
<option value = "2"> Jan 17 - B2B Webs </option> 
<option value = "3"> Feb 21 - Database </option> 
<option value = "5"> Mar 21 - Web Facing </option> 
<option value = "6"> Apr 18 - Announcements </option> 
<option value = "7"> May 23 - Security </option> 
********  End of data  ********
     
------------
Walden H Leverich III
President
Tech Software
(516)627-3800 x11
WaldenL@TechSoftInc.com
http://www.TechSoftInc.com
+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com. 
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.

| Questions should be directed to the list owner/operator:
david@midrange.com 
+---
+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com.
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.