Tagged Questions

4
votes
9answers
2k views

Calculate date from week number

Anyone know an easy way to get the date of the first day in the week (monday here europe). I know the year and the week number? I'm going to do this in C#. Thanks in advance.
3
votes
3answers
247 views

What’s the best way to find the inverse of datetime.isocalendar()?

The Python datetime.isocalendar() method returns a tuple (ISO_year, ISO_week_number, ISO_weekday) for the given datetime object. Is there a corresponding inverse function? If not, is there an easy …
3
votes
8answers
3k views

Calculating days of week given a week number

Given a week number, e.g. date -u +%W, how do you calculate the days in that week starting from Monday? Example rfc-3339 output for week 40: 2008-10-06 2008-10-07 2008-10-08 2008-10-09 2008-10-10 …
2
votes
6answers
86 views

How many weeks are inside of two dates.

I have starting dates and ending dates in my database (MySQL). How can I get the answer, how many weeks(or days) are inside of those 2 dates? (mysql or php) For example I have this kind of …
1
vote
1answer
23 views

Get all the dates in a week of the selected date in jquery date picker?

I am creating a task list with number of hours worked to be entered against each task along each day of the week. So if a user clicks on a particular week dates then I need to get all the days' dates …
1
vote
3answers
116 views

SQL to create table with weeks in period - having breaks at month’s end (Oracle)

Hello, I need to create a table with the following structure: calendar week; week start date; week end date which contains all weeks beginning in 2007 until the current week. The special thing …
1
vote
2answers
104 views

MySQL joining four tables and using WEEK and DATEDIFF to get current data?

Hi! I'm trying to write a query getting information from four tables and I'm not able to figure it out. Can someone please help me with some guidance? The model is that a user can book a room for a …
1
vote
2answers
38 views

How do I define a work week in SQL Server 2000?

I need to split a report by work week, and our work week is Saturday through Friday. How would I convert an ISO week from DATEPART(WW, ) into a work week?
1
vote
6answers
294 views

MySQL Query to calculate Previous Week

Hello I would like to calculate my total order amount in the previous week. I got the query for getting the data for the last 7 days from the current date. SELECT SUM(goods_total) AS Total_Amount …
1
vote
3answers
218 views

SQL to Return Results from Week 13 Year 2008 (not grouped)

Hi folks, I'm trying to use a Year-Week format in oracle SQL to return results only from a range of Year-Weeks. Here's what I'm trying SELECT * FROM widsys.train trn WHERE …
0
votes
1answer
433 views

SQL GROUP BY week (Monday 07:00:00 to Monday 06:59:59)

Hi folks, I've created a query that groups production data on ISO week by using this query SELECT to_char(wid_date,'IYYY'), to_char(wid_date,'IW'), tonnes FROM production WHERE …
0
votes
3answers
626 views

Unix gettimeofday() - compatible algorithm for determining week within month?

If I've got a time_t value from gettimeofday() or compatible in a Unix environment (e.g., Linux, BSD), is there a compact algorithm available that would be able to tell me the corresponding week …