active questions tagged dates - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:22:28Z http://stackoverflow.com/feeds/tag/dates http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804613/how-can-i-store-and-query-schedule-data 2 How can I store and query schedule data? rball 2009-11-26T16:24:37Z 2009-11-26T19:02:56Z <p>I'd like to allow my users to setup a schedule for their events. It could be a single day, or for convenience I'd like to allow them to specify a reoccurring event (similar to an Outlook appointment).</p> <p>For the single event it seems pretty easy (pseudo-code):</p> <p>Just have a DateOfEvent column that has the date on it.</p> <p>To grab future events:</p> <p>Select * from events where DateOfEvent > {DateTime.Now}</p> <p>But how could I store and query a reoccurring event? I don't need to do times, as I'd just store that seperately, and if they needed a different time I'd just have them create another event. So no: Every wednesday at 5 and thursdays at 3.</p> <p>Examples:</p> <p>Every mon, tues, wed, thu, fri, every week</p> <p>Every wed every week</p> <p>Every second tuesday of the month</p> http://stackoverflow.com/questions/1803987/how-do-i-exclude-weekend-days-in-a-sql-server-query 2 How do I exclude Weekend days in a SQL Server query? Andrew 2009-11-26T14:28:49Z 2009-11-26T15:02:47Z <p>How do I exclude values in a <code>DateTime</code> column that are Saturdays or Sundays?</p> <p>For example, given the following data:</p> <pre><code>date_created '2009-11-26 09:00:00' -- Thursday '2009-11-27 09:00:00' -- Friday '2009-11-28 09:00:00' -- Saturday '2009-11-29 09:00:00' -- Sunday '2009-11-30 09:00:00' -- Monday </code></pre> <p>this is the result I'm looking for:</p> <pre><code>date_created '2009-11-26 09:00:00' -- Thursday '2009-11-27 09:00:00' -- Friday '2009-11-30 09:00:00' -- Monday </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1802855/returning-the-quarter-in-sql-server 0 Returning the Quarter in SQL Server Toby 2009-11-26T10:27:50Z 2009-11-26T13:10:56Z <p>I am a complete novice at SQL Server and naively thought that there would be a QUARTER() function, alas there is not and some googling didn't come up with anything useful!</p> <p>Basically what I want to achieve is that for all rows in my database I want a count of those rows grouped by Quarter.</p> <p>If possible I would like to keep all calculation with the query but if not it is PHP that is kicking everything off.</p> http://stackoverflow.com/questions/1801044/array-of-dates-in-java 1 Array of Dates in Java Madison 2009-11-26T01:14:42Z 2009-11-26T05:10:55Z <p>I know how to create an array of strings or integers, but how does one create an array of dates :/ </p> http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108 10 Why does Javascript getYear() return 108? ctrlShiftBryan 2008-09-18T23:53:48Z 2009-11-25T14:40:17Z <p>Why does this javascript return 108 instead of 2008? it gets the day and month correct but not the year?</p> <pre><code>myDate = new Date(); year = myDate.getYear(); </code></pre> <p>year = 108?</p> http://stackoverflow.com/questions/1795383/compare-dates-in-javascript -2 Compare dates in Javascript [closed] unknown (google) 2009-11-25T08:09:11Z 2009-11-25T08:09:11Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/492994/compare-2-dates-with-javascript">Compare 2 dates with JavaScript</a><br> <a href="http://stackoverflow.com/questions/1795108/compare-dates-in-javascript">Compare dates in Javascript</a> </p> </blockquote> <p>How can we compare two dates in javascript?</p> http://stackoverflow.com/questions/1795108/compare-dates-in-javascript 0 Compare dates in Javascript [closed] unknown (google) 2009-11-25T06:56:14Z 2009-11-25T07:51:22Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/348127/how-do-i-compare-dates-in-javascript">How do I compare dates in Javascript?</a><br> <a href="http://stackoverflow.com/questions/492994/compare-2-dates-with-javascript">Compare 2 dates with JavaScript</a> </p> </blockquote> <p>How can we compare two dates in javascript?</p> http://stackoverflow.com/questions/6467/date-arithmetic-in-unix-shell-scripts 1 Date arithmetic in Unix shell scripts ggasp 2008-08-08T23:24:02Z 2009-11-23T23:48:07Z <p>I need to do date arithmetic in Unix shell scripts that I use to control the execution of third party programs. </p> <p>I'm using a function to increment a day and another to decrement: </p> <pre><code>IncrementaDia(){<br>echo $1 | awk '<br>BEGIN {<br> diasDelMes[1] = 31<br> diasDelMes[2] = 28<br> diasDelMes[3] = 31<br> diasDelMes[4] = 30<br> diasDelMes[5] = 31<br> diasDelMes[6] = 30<br> diasDelMes[7] = 31<br> diasDelMes[8] = 31<br> diasDelMes[9] = 30<br> diasDelMes[10] = 31<br> diasDelMes[11] = 30<br> diasDelMes[12] = 31<br>}<br>{<br> anio=substr($1,1,4)<br> mes=substr($1,5,2)<br> dia=substr($1,7,2)<br><br> if((anio % 4 == 0 &amp;&amp; anio % 100 != 0) || anio % 400 == 0)<br> {<br> diasDelMes[2] = 29;<br> }<br><br> if( dia == diasDelMes[int(mes)] ) {<br> if( int(mes) == 12 ) {<br> anio = anio + 1<br> mes = 1<br> dia = 1<br> } else {<br> mes = mes + 1<br> dia = 1<br> }<br> } else {<br> dia = dia + 1<br> }<br>}<br>END {<br> printf("%04d%02d%02d", anio, mes, dia)<br>}<br>'<br>}<br><br>if [ $# -eq 1 ]; then<br> tomorrow=$1<br>else<br> today=$(date +"%Y%m%d")<br> tomorrow=$(IncrementaDia $hoy)<br>fi<br></code></pre> <p>but now I need to do more complex arithmetic. </p> <p>What it's the best and more compatible way to do this?</p> http://stackoverflow.com/questions/1783086/how-to-group-items-by-date-range-in-xslt 0 How to group items by date range in XSLT? glenatron 2009-11-23T13:18:56Z 2009-11-23T21:54:58Z <p>I have a bunch of data that looks a little like this:</p> <pre><code>&lt;item&gt; &lt;colour&gt;Red&lt;/colour&gt; &lt;date_created&gt;2009-10-10 12:01:55&lt;/date_created&gt; &lt;date_sold&gt;2009-10-20 22:32:12&lt;/date_sold&gt; &lt;/item&gt; &lt;item&gt; &lt;colour&gt;Blue&lt;/colour&gt; &lt;date_created&gt;2009-11-01 13:21:00&lt;/date_created&gt; &lt;date_sold&gt;2009-11-21 12:32:12&lt;/date_sold&gt; &lt;/item&gt; &lt;item&gt; &lt;colour&gt;Blue&lt;/colour&gt; &lt;date_created&gt;2009-10-29 21:23:02&lt;/date_created&gt; &lt;date_sold&gt;2009-10-20 02:02:22&lt;/date_sold&gt; &lt;/item&gt; &lt;item&gt; &lt;colour&gt;Red&lt;/colour&gt; &lt;date_created&gt;2009-11-02 09:11:51&lt;/date_created&gt; &lt;date_sold&gt;2009-11-20 09:15:53&lt;/date_sold&gt; &lt;/item&gt; &lt;item&gt; &lt;colour&gt;Red&lt;/colour&gt; &lt;date_created&gt;2009-10-18 11:00:55&lt;/date_created&gt; &lt;date_sold&gt;2009-10-20 11:12:22&lt;/date_sold&gt; &lt;/item&gt; </code></pre> <p>Now what I would like to be able to do is to run that through an XSLT stylesheet such that I get ouput looking like this:</p> <pre><code>Colour | In stock 1 week | In stock 2 weeks | In stock 3 weeks Red | 1 | 3 | 2 Blue | 0 | 2 | 1 </code></pre> <p>Currently I have a stylesheet that uses basic muenchian grouping to show that 30% of stock was Red and 70% blue, but I can't see a way to find the number of nodes withing a given date range.</p> <p>Is there a way to use keys to select a range? Do I need to create some kind of intermediate data node? Is there a different route that shows I'm barking up the wrong tree with both those suggestions? Is this even possible with XSLT or do I need to find a way to change the data source?</p> http://stackoverflow.com/questions/1769449/build-date-range 0 Build date range... Oliver 2009-11-20T09:50:45Z 2009-11-21T07:48:08Z <p>I have a start date of 20090101 and an end date of 20091130 and I'm trying to build and array of all the months in between, which would look like this:</p> <pre><code>&lt;?php /* ... */ $arrDates['Jan'] = 2009; $arrDates['Feb'] = 2009; $arrDates['Mar'] = 2009; /* ... */ ?&gt; </code></pre> <p>How can I do this?</p> http://stackoverflow.com/questions/1766258/how-do-you-set-a-date-in-a-mysql-update-from-a-milliseconds-since-epoch-value 0 How do you set a date in a mysql update from a milliseconds since epoch value? justinhj 2009-11-19T20:22:39Z 2009-11-19T20:53:40Z <p>I want to fill out some null dates with default dates, which should be the epoch date. </p> <p>eg set updateDate = somethingtoconvertEpochDateToDateTime(numberofMillisSinceEpoch)</p> http://stackoverflow.com/questions/1764124/date-extraction-libraries 0 Date Extraction Libraries Daniel 2009-11-19T15:33:04Z 2009-11-19T15:43:00Z <p>Does anyone know if there are any libraries around that will extract dates and times given a body of text? It doesn't matter which language, I'm just looking for a library to play with.</p> http://stackoverflow.com/questions/1497586/how-can-i-calculate-find-the-week-number-of-a-given-date 3 How can I calculate/find the week-number of a given date? roosteronacid 2009-09-30T11:34:25Z 2009-11-18T10:25:45Z <p>How can I calculate/find the week-number of a given date?</p> http://stackoverflow.com/questions/1737254/check-on-overlapping-dates-vb-net 2 check on overlapping dates (vb.net) Ayrton 2009-11-15T11:10:46Z 2009-11-15T12:08:58Z <p>Hi</p> <p>in a program I'm writing I'm creating some objects with a start date (with a datepicker) and an end date (also with a datepicker). Now I need to check if this object's date range overlaps with any other object's date range stored in the database. If it does I can't save it in the database but if it doesn't I can.</p> <p>Anyone has an idea how to do this?</p> http://stackoverflow.com/questions/1735629/how-to-handle-recurring-dates-dates-only-in-net 1 How to handle recurring dates (dates only) in .NET? Wayne M 2009-11-14T21:16:40Z 2009-11-15T11:49:07Z <p>I am trying to figure out a good way to handle recurring events in .NET, specifically for an ASP.NET MVC application. The idea is that a user can create an event and specify that the event can occur repeatedly after a specific interval (e.g. "every two weeks", "once a month" and so on).</p> <p>What would be the best way to tackle this? My brainstorming right now is to have two tables: Job and RecurringJob. Job is the "master" record and has the description of the job as well a key to what customer it's for, while RecurringJob links back to Job and has additional info on what the occurrence frequency is (e.g. 1 for "once a month") as well as the timespan (e.g. "Weekly", "Monthly"). The issue is how to determine and set the next occurrence of the job since this will have to be something that's done regularly. I've seen two trains of thought with this: This logic should either be stored in a database column and periodically updated, or calculated on the fly in the code.</p> <p>Any thoughts or suggestions on tackling this?</p> <p>Edit: this is for a subscription based web app I'm creating to let service businesses schedule their common recurring jobs easily and track their customers. So a typical use might be to create a "Cut lawn" job for Mr Smith that occurs every month The exact date isn't important - it's the ability for the customer to see that Mr Smith gets his lawn cut every month and followup with him about it. </p> <p>Let me rephrase the above to better convey my idea. A sample use case for the application might be as follows:</p> <ul> <li>User pulls up the customer record for John Smith and clicks the <em>Add Job</em> link.</li> <li>The user fills out the form to create a job with a name of "Cut lawn", a start date of 11/15/2009, and selects a checkbox indicating that this job continually occurs. The user is presented with a secondary screen asking for the job frequency. The user indicates (haven't decided how at this point - let's assume select lists) that the job occurs once a month. </li> <li>User clicks save. </li> </ul> <p>Now, when the user views the record for John Smith, they can see that he has a job, "Cut lawn", that occurs every month starting from 11/15/2009. On the main dashboard when it's one week prior to the assumed start date, the user sees the job displayed with an indicator such as "12/15/2009 - Cut lawn (John Smith)". A week before the due date someone from the company calls him up to schedule and he says he's going to be out of town until 1/1/2010, so he wants his appointment rescheduled for that date. Our user can change the date for the job to be 1/1/2010, and now the recurrence will start one month from that date (e.g. next time will be 2/1/2010). The idea behind this is that the app is targeting businesses like lawn care, plumbers, carpet cleaners and the like where the exact date isn't as important (because it can and will change as people are busy), the key thing is to give the business an indicator that Mr. Smith's monthly service is coming up, and someone should give him a call to determine when exactly it can be scheduled for. In effect give these businesses a way to track repeat business and know when it's time to followup with a customer.</p> http://stackoverflow.com/questions/1725762/drupal-rules-flag-date 1 drupal, rules, flag, date Ed 2009-11-12T22:08:14Z 2009-11-13T14:26:43Z <p>Hi,</p> <p>Hope someone can advise.</p> <p>I am using drupal 6.</p> <p>I have a node called [classroom].</p> <p>I would like to have a [vacancy register] associated with each classroom.</p> <p>vacancy register is a cck type with: - uid - nid - join date</p> <p>I would like for each user to [register] for a vacancy. I think I can use flag for this.</p> <p>When a user joins, I can use rules to action an email to be sent to the user and the [classroom]->cck_email field.</p> <p>1. I would like a rule schedule to also run every 30 days ( configurable ) to alert the user to confirm their [registration].</p> <p>1a. If no registration is confirmed, then 14 days later, the user is [unregistered] from the classroom.</p> <p>1b. If user confirms registration ( by clicking on a button or url ). then the rule 1 runs again.</p> <p>I would like to confirms if my approach to this is correct.</p> <p>Thanks in advance.</p> <p>Cheers Ed</p> http://stackoverflow.com/questions/1705050/sqlite-writing-a-date-into-an-email 2 sqlite writing a date into an email Leland usher 2009-11-10T01:07:20Z 2009-11-10T08:50:27Z <p>Hi, I am exporting a date value from sqlite and placing it into an email. The date appears like this 279498721.322872</p> <p>I am using Objective C in an Iphone App. Does anyone know how to make this export out as a regular date whether it is all number like 2009-02-10 or anything legible?</p> http://stackoverflow.com/questions/51054/batch-file-to-delete-files-older-than-n-days 3 Batch file to delete files older than N days Kibbee 2008-09-09T01:05:28Z 2009-11-09T17:15:44Z <p>I am looking for a way to delete all files older than 7 days in an MS-DOS batch file. I've search around the web, and found some examples with hundreds of lines of code, and others that required installing extra command line utilities to accomplish the task. Similar things can be <a href="http://beta.stackoverflow.com/questions/25785/delete-all-but-the-most-recent-x-files-in-bash" rel="nofollow">done in BASH</a> in just a couple lines of code. It seems that something at least remotely easy could be done for batch files windows. I'm looking for a solution that works in a standard windows command prompt, without any extra utilities. Please no PowersHell or Cygwin either.</p> http://stackoverflow.com/questions/1701850/sql-server-date-formats-ddd 1 SQL Server Date Formats -- ddd Nick 2009-11-09T15:42:01Z 2009-11-09T16:39:58Z <p>How do I get the day of the week (in ddd format, so Mon, Tue etc.) in SQL ? I don't see anything about it in the CAST and CONVERT documentation..</p> http://stackoverflow.com/questions/1695389/odd-behavior-of-mktime 0 Odd behavior of mktime() Austin Hyde 2009-11-08T04:46:27Z 2009-11-08T06:38:55Z <p>Continuing on <a href="http://stackoverflow.com/questions/1692184/best-way-to-convert-epoch-time-to-real-date-time">my attempt to create a DateTime class</a> , I am trying to store the "epoch" time in my function:</p> <pre><code>void DateTime::processComponents(int month, int day, int year, int hour, int minute, int second) { struct tm time; time.tm_hour = hour; time.tm_min = minute; time.tm_sec = second; time.tm_mday = day; time.tm_mon = month; time.tm_year = year - 1900; ticks_ = mktime(&amp;time); processTm(time); } void DateTime::processTm(struct tm time) { second_ = time.tm_sec; minute_ = time.tm_min; hour_ = time.tm_hour; weekday_ = time.tm_wday; monthday_ = time.tm_mday; yearday_ = time.tm_yday; month_ = time.tm_mon; year_ = time.tm_year + 1900; } </code></pre> <p>For an arbitrary date, <code>processComponents(5,5,1990,1,23,45)</code> (June 6, 1990 1:23:45 am), it sets all values correctly and as expected.</p> <p>However, upon further testing, I find that for <code>processComponents(0,0,1970,0,0,0)</code> (January 1, 1970, 12:00:00 am), <code>mktime(&amp;time)</code> causes <code>time</code> to be screwed up:</p> <pre><code>time.tm_mon = 11; time.tm_mday = 30; time.tm_year = 69; time.tm_hour = 23; time.tm_min = 0; time.tm_sec = 0; time.tm_isdst = 0; time.tm_gmtoff = -18000; time.tm_zone = "EST"; time.tm_wday = 2; time.tm_yday = 363; </code></pre> <p>Translating to a date of December 31, 1969 11:00:00 pm.</p> <p>I can verify that <code>mktime()</code> is responsible, because by commenting out that line, it reports the date and time correctly as January 1, 1970 12:00:00 am.</p> <p>Why is <code>mktime()</code> only messing up the epoch? And how should I fix / workaround this?</p> <p>Thanks! </p> http://stackoverflow.com/questions/1688000/how-can-i-calculate-how-many-nights-are-there-in-a-date-range 1 How can I calculate how many nights are there in a date range? Juan Manuel 2009-11-06T14:36:33Z 2009-11-06T14:39:54Z <p>I need to calculate the quantity of nights (stay at a hotel) from the checkin and checkout dates.</p> <p>What is the best way to do it?</p> <p>ie: If I have</p> <pre><code>Checkin: 12/11/2009 15:00 hs Checkout: 14/11/2009 12:00 hs </code></pre> <p>Doing <code>(Checkout - Checkin).Days</code> would give me 1 night instead of 2</p> <p>I'm thinking of adding a simple <code>if</code> to check the hours (if checkin-time is greater than checkout-time) and add the missing night, but maybe there's a better "algorithm"</p> http://stackoverflow.com/questions/1171208/what-is-the-precise-definition-of-jdes-julian-date-format 1 What is the precise definition of JDE's Julian Date format? Andy Balaam 2009-07-23T11:42:03Z 2009-11-05T00:02:29Z <p>I am writing code to convert from a Gregorian date to a JDE (<a href="http://en.wikipedia.org/wiki/J.%5FD.%5FEdwards" rel="nofollow">J.D.Edwards</a>) Julian date.</p> <p><em>Note: a <strong>JDE</strong> Julian date is different from the normal usage of the term <a href="http://en.wikipedia.org/wiki/Julian%5Fday" rel="nofollow">Julian date</a>.</em></p> <p>As far as I can work out from Googling, the definition of a JDE Julian date is:</p> <pre><code>1000*(year-1900) + dayofyear </code></pre> <p>where year is the 4-digit year (e.g. 2009), and dayofyear is 1 for 1st January, and counts up all year to either 365 or 366 for 31st December (depending whether this is a leap year).</p> <p>My question is this: are years before 1900 supported? If so, does the above formula still hold, or should it be this:</p> <pre><code>1000*(year-1900) - dayofyear </code></pre> <p>(note minus instead of plus.)</p> <p>or something else?</p> <p>Does anyone have a link to the official documentation for this date format?</p> http://stackoverflow.com/questions/1668172/handling-partial-incomplete-dates-in-net 0 Handling partial/incomplete dates in .NET ilivewithian 2009-11-03T15:47:17Z 2009-11-03T16:31:18Z <p>I have the need to handle partial dates, so for example:</p> <ul> <li>1 April 2009 (stored as 1, 4, 200)</li> <li>Jan 2000 (Stored as null, 1, 2000)</li> <li>March 90 (Stored as null, 3, 1990)</li> <li>00 (Stored as null, null, 2000)</li> </ul> <p>and so on.</p> <p>Looking at it, I don't think it's a massive problem as it will only have to handle UK dates, so globalization is not a consideration. The fiddly bit will be working out what a user means when they type 50, does that means 1950 or 2050.</p> <p>Before I actually wade in and reinvent the wheel, has this been done before in some code that I can either use as reference or directly?</p> <p><strong>Updates for Clarity</strong></p> <p>The partial dates will be used to store the date of birth for people who are less than 25 years old.</p> <p>As for how the data will be displayed:</p> <p>User Enters: 01/00</p> <p>Interpreted as: Jan/2000</p> <p>Displayed as: Jan 2000</p> <p>User Enters: 01/01/99</p> <p>Interpreted as: 1/Jan/1999</p> <p>Displayed as: 1 Jan 1999</p> http://stackoverflow.com/questions/1648620/calculate-two-dates-with-php 1 Calculate two dates with PHP? Keith Donegan 2009-10-30T08:33:11Z 2009-10-30T08:59:22Z <p>I have two dates in the format below:</p> <p>Start Date = 30-10-2009 </p> <p>End Date = 30-11-2009</p> <p>How, with PHP could I calculate the seconds between these two dates?</p> http://stackoverflow.com/questions/1644500/searching-on-date-ranges-with-lucene-in-java 1 Searching on date ranges with Lucene in Java ? eltados 2009-10-29T15:22:16Z 2009-10-29T15:38:29Z <p>Is it possible to search on date ranges using Lucene in Java? How do I build Lucene search queries based on date fields and dates ranges? For example:</p> <ul> <li>between specified dates</li> <li>prior to a specified date</li> <li>after a specified date</li> <li>within the last 24 hours</li> <li>within the past week</li> <li>within the past month.</li> </ul> <p>[Edit] i'm using Lucene 2.4.1 and my system is really legacy and really poorly tested so i would like if possible not to have to upgrade</p> http://stackoverflow.com/questions/1637652/find-the-week-number-of-a-given-date 0 Find the week-number of a given date [closed] roosteronacid 2009-10-28T14:33:54Z 2009-10-28T16:03:26Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1497586/how-can-i-calculate-find-the-week-number-of-a-given-date">How can I calculate/find the week-number of a given date?</a> </p> </blockquote> <p>How can I find the week-number of a given <code>DateTime</code> instance?</p> http://stackoverflow.com/questions/1581677/date-of-birth-validation-how-far-much-would-you-go 6 "Date of birth" validation: How far/much would you go? o.k.w 2009-10-17T07:49:03Z 2009-10-26T10:38:56Z <p>I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is neutral in this context), I wanted something to prevent 'punky' inputs.</p> <p>I used a date picker and restricted the max date to be <strong>XX</strong> years from the current day. <strong>XX</strong> make sense for this scenario as anyone younger shouldn't be even applying for the job.</p> <p>The validation error message is: You seem too young for the job.</p> <p>Then I began to get adventurous. How about?</p> <p>If DOB is more than 120 years ago, message: "You cannot be that old!!!"</p> <p>If DOB is in the future, message: "You must be kidding, you are not born yet!!!"</p> <p>In the end, I deployed without the last 2, too cheeky for my no-nonsense client.</p> <p>I would like to know how far/much would you guys go to validate DOB fields for good usability (or humor)?</p> <p>Similarly for dates like, "Date of marriage", "Year of graduation" etc...</p> <p>PS: As I was about to submit this post, there's a warning under the title textbox: "The question you're asking appears subjective and is likely to be closed." Fingers crossed.</p> <p><strong>To add:</strong> I'm quite surprised that some/most of the guys are not too concern about the validation. I repeat one of my comments here:</p> <p>If the user entered the date wrongly (something very obvious) whether by intent or by mistake; that's one of the purposes of the validators to catch it. When data goes into the system, the site owner only know the input is wrong, he/she would not know the actual value without asking the user. If this field is highly important, it will not be a pretty scenario.</p> http://stackoverflow.com/questions/1623735/calculate-the-first-day-of-a-calendar-week-c 3 Calculate the first day of a calendar week [C++] ~punischdude 2009-10-26T08:54:02Z 2009-10-26T09:15:03Z <p>I need to calculate the date of the first day in a calendar week, e.g.</p> <p>Week 1 in 2009 -> Mon, 29.12.2008 (!)<br /> Week 44 in 2009 -> Mon, 26.10.2009</p> <p>I have some ugly code for this, but I would prefer a nice C++ lib.</p> <p>Any suggestions?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1607336/c-calculate-difference-between-two-dates-number-of-days 0 C#: Calculate difference between two dates (number of days)? oo 2009-10-22T13:47:15Z 2009-10-22T13:54:06Z <p>I see that this question has been answered for <a href="http://stackoverflow.com/questions/1555262/">Java</a>, <a href="http://stackoverflow.com/questions/1036742/">Javascript</a>, and <a href="http://stackoverflow.com/questions/676824/">PHP</a>, but not C#. So, how might one calculate the number of days between two dates in C#?</p> http://stackoverflow.com/questions/1308861/how-do-i-form-an-sql-query-using-datesub-to-check-for-yesterdays-data-or-if-it 1 How do I form an SQL query using DATE_SUB to check for yesterday's data OR if it's Monday, to check for Friday's data? Jen Schnidman 2009-08-20T21:14:06Z 2009-10-22T06:41:51Z <p>Here's my query:</p> <pre><code>SELECT * FROM daily_records AND date = DATE_SUB(CURDATE(), INTERVAL 1 DAY) </code></pre> <p>I use this to generate a report of everything that happened yesterday. This works great, Tuesday-Friday. However, on Mondays, I want it to be able to search back to Friday (the previous business day, eg <code>INTERVAL 3 DAY</code>).</p> <p>Is there a way to do this in mySQL? Or do I just need to check the day of the week in PHP before writing the query?</p>