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



Yet another way:

Select ...
Case When DayOfWeek_ISO(YourDate) <= DayOfYear(YourDate)
then Next_Day(YourDate - 8 days, 'SUN')
else Last_Day(YourDate - 1 Month) + 1 Day End
From ...

Mit freundlichen Grüßen / Best regards

Birgitta Hauser

"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"

-----Ursprüngliche Nachricht-----
Von: MIDRANGE-L [mailto:midrange-l-bounces@xxxxxxxxxxxx] Im Auftrag von
Glenn Gundermann
Gesendet: Monday, 29.6 2015 23:43
An: Midrange Systems Technical Discussion
Betreff: Re: SQL, return last sundays date...

select *
from( values(
case
when dayofweek(current_date) = 1 then current_date
when dayofweek(current_date) > 1 and year(current_date -
(DAYOFWEEK(current_date)
- 1) DAYS) = year(current_date) then current_date - (DAYOFWEEK(current_date)
- 1) DAYS
else date(year(current_date) concat '-01-01')
end)) t ("Last Sunday") ;


Yours truly,

Glenn Gundermann
Email: glenn.gundermann@xxxxxxxxx
Work: (416) 675-9200 ext. 89224
Cell: (416) 317-3144

Please consider sponsoring me for the Friends For Life Bike Rally
<https://secure.e2rm.com/registrant/FundraisingPage.aspx?SID=5323935&LangPre
f=en-CA>
in support of the Toronto People with AIDS Foundation.


On 29 June 2015 at 17:29, Gerald Magnuson <gmagqcy.midrange@xxxxxxxxx>
wrote:

yes. that is what I need...


On Mon, Jun 29, 2015 at 4:28 PM, John Yeung
<gallium.arsenide@xxxxxxxxx>
wrote:

On Mon, Jun 29, 2015 at 4:54 PM, Gerald Magnuson
<gmagqcy.midrange@xxxxxxxxx> wrote:
now I just need to figure out how to get the beginning of week,
when
end
is
< 01-07...

Like Charles, I don't know what you mean by this.

But I will take a stab. My guess is that when the "input date" is
too close to the beginning of the year (so that there is no previous
Sunday in that year), you want to instead return Jan 1 of that year.

John Y.
--
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.

This thread ...

Follow-Ups:
Replies:

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.