Tagged Questions
4
votes
2answers
97 views
Adjust Date to match saved day of week
I have a table that stores a StartDate and the name of the day of week that start date falls on. I don't know why, it is bad design but I didn't create it and can't change it. So of course, now we ...
3
votes
5answers
1k views
Order by day_of_week in MySQL
How can I order the mysql result by varchar column that contains day of week name?
Note that MONDAY should goes first, not SUNDAY.
1
vote
2answers
465 views
Ruby Rails Complex SQL with aggregate function and DayOfWeek
Rails 2.3.4
I have searched google, and have not found an answer to my dilemma.
For this discussion, I have two models. Users and Entries. Users can have many Entries (one for each day).
Entries ...
1
vote
1answer
128 views
Find closest last day of the week
I have rows with a date column. I need to find the values closest to the end of each week.
Example:
For week 3 - 9 Jan, from the values 4,5,6 Jan, it will return 6 Jan, and for week 10 - 16 Jan, from ...
1
vote
4answers
1k views
Get string representation of a sql DateTime day
Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'.
Is there any built in sql function / operation i can perform on the dates above to return the string representation of the DAY of the ...
0
votes
2answers
106 views
sql between for DAYSOFWEEK
I have a generalized search where I'm looking up average prices for the various days of the week. The problem is I'm not sure how to ask for an odd range. 1-7 works fine, (monday-sunday), but if the ...