Use this tag for questions about the comparison of dates, in any Language or Format-Date

learn more… | top users | synonyms

1
vote
3answers
73 views

How should I properly compare two dates?

Having some trouble implementing this simple task. Basically I want to compare two dates(some older date vs new date). I want to know if the older date is more than x months old and y days old. int ...
2
votes
3answers
298 views

Comparing two dates in different tables SQL with criteria

Click image to see the table structure and problm http://i.stack.imgur.com/odWKL.png SELECT B.ENTITYID, B.BALANCEDATE, B.BALANCE, ...
-2
votes
1answer
190 views

Comparing two dates with different date format

I have two dates : one is in the format String Dates = "2013-03-10"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Date from = sdf.parse(Dates); And other is ...
-1
votes
3answers
109 views

compare string with todays date in javascript

I've got a string from an input field wich I use for date with a format like this 25-02-2013. Now I want to compare the string with todays date. I want to know if the string is older or newer then ...
2
votes
2answers
156 views

Comparing dates ignoring the seconds and the milliseconds instant of DateTime in Joda

Let's assume that I have two dates like the following. DateTimeFormatter formatter = DateTimeFormat.forPattern("dd-MMM-yyyy HH:mm:ss").withZone(DateTimeZone.forID("Asia/Kolkata")); DateTime firstDate ...
0
votes
2answers
60 views

SQL to compare date in python

I need to compare the user input date kakko (yyyy-mm-dd format) with the CreateDate and UpdateDate in table productinfo and return the result. This does not work. cur.execute("SELECT * FROM ...
0
votes
2answers
108 views

comparing dates mysql

i am having a litle problem with my sql query. in database i have a expiry date for a invoice. is saved as string 12-01-2013 now i want to compare this date with today. but is not working. this is ...
3
votes
1answer
56 views

Sum data from dates during this year using Google Spreasheets

I have a list of books I've read over the years, along with page counts, stored in Google Spreadsheets. For each book, I keep a pagecount and the date I finished the book. I'd like to sum up the ...
0
votes
2answers
57 views

SELECT All Birthdays that span 2 years (2012-2013)

Just curious if someone can give me some guidance with this issue of finding birthdates with MySQL. I currently have a 'calendar' that is setup, it shows 1 month + 3 days before and 3 days after that ...
0
votes
1answer
179 views

XSLT date comparison not working

I am trying to implement an XSLT date comparison but doesn't seem to work, here is my code: <xsl:variable name="CreatedDate" select="@createDate"/> <xsl:variable ...
0
votes
1answer
31 views

msql date comparison working ONLY if the year is is first

I have a that is doing a date comparison in the where clause which only works if the year is the first part of the string. the crDate field is a DATETIME so shouldn't both of the following work? and ...
0
votes
0answers
49 views

Comparing Date from Access to Date from Excel

I'm turning an Excel database into Access, and I'm doublechecking the values to make sure everything is accurate. Right now, I'm trying to compare dates, but I'm having issues. For example, Excel ...
-2
votes
1answer
100 views

Date not equals to two dates

I have got data from table. There is one datetime field in table. Field name is createdon In select query I pass two datetime parameters Now I want all data from table where createdon field is not ...
0
votes
1answer
90 views

Text in drop down should be green not red

I have a drop down menu which displays an exam's name, date and time and what I want to do is that if an exam date has been passed from the current date or time, then the text is displayed in red, ...
0
votes
1answer
154 views

Grails Comparing a DateTime to get the difference in hours

I have the following code below, I'm trying to compare two dates using Joda, so I can get the difference in hours. This works fine for two dates on the same day (see test 1 below). However, if I'm ...
0
votes
2answers
254 views

date comparison in sql server

I am trying to display records which have their date (I have a column Date in table) 30 days back from today's date. And once it gets displayed I need to make a new record by adding details with Date= ...
0
votes
1answer
56 views

Ruby: Is Date greater than a particular date

I am trying to do a date comparison like so: if date > "Sept 22" #do stuff else #do other stuff end I just can't think of how to do this in Ruby (well at least looking at a particular date).
0
votes
3answers
2k views

Date comparison in SQL Server 2008

I am trying to compare dates, but my query doesnot return any result. Curious if I have written the query correctly ? SELECT * FROM a, b WHERE CONVERT(varchar(50),a.BirthDate, 101) ...
4
votes
1answer
487 views

Compare two dates based on year-month, taking no notice of day

I need to be able to compare two dates, only based on the year and the month (i.e. without taking notice of the day), and that in JAVA and HQL. Let's say I need to check if d1 is less than or equals ...
1
vote
4answers
463 views

Check if a date is between two days in iPhone

I know how to compare dates.In my case, let Date1 = 2011-10-14 & Date2 =2011-10-20 .And I want to check if 15th Oct lie between Date1 and Date2.I'm using following codes for this: if ( [date ...
1
vote
3answers
191 views

SQL 2012 - SearchAllTables for datetime Stored procedure

I'm trying to create a stored procedure that will search all user created tables of a database for a search string. I found this stored procedure that I'd like to start off with and build on. ...
2
votes
2answers
160 views

date_diff returning crazy things

Banging my head against the wall today working with dates. I am looping through a bunch of datetimes and comparing them to the current date to determine how far away they are. So I am returning ...
1
vote
2answers
79 views

Get count from MySQL table which added on or before a date and deleted on or after a date

I am very much new to SQL and I don't know much TABLE employee_table contains the following columns `pkId` INT(10), `name` VARCHAR(60), `pfStatus` TINYINT(3), `is_active` TINYINT(3), `addedDate` ...
0
votes
3answers
434 views

DateTime comparison without time part?

I wrote this code. But I want to ignore time, I want to compare only day. from s in sayac_okumalari where s.okuma_tarihi == startDate && s.sayac_id == sayac_id group s by new { date = new ...
0
votes
0answers
255 views

MySQL Stored procedure insert new row on new day/month/year

I am currently writing a trigger that calls a stored procedure on each new inserted row in master table, that computes and updates a specific row in auxiliary table. I have a column Date, that holds ...
0
votes
4answers
647 views

Ruby on Rails - Date Comparison

I am trying to compare dates for an app in rails. I have tried this link Comparing dates in rails. But this is not what I want, suppose I have a filter according to dates, then I am doing <% jobs ...
4
votes
7answers
1k views

Getting date list in a range in PostgreSQL

I'd like to get the list of days between the two dates (including them) in a PostgreSQL database. For example, if I had: start date: 29 june 2012 end date: 3 july 2012 then the result should be: ...
0
votes
3answers
97 views

setting particular date to Date object

I've been trying this from a long time. I'm having today's date and I want to compare it with specific date. But when I set particular date like this, it gives me wrong output: Calendar cal; ...
4
votes
7answers
1k views

How to get most recent date from an array of dates?

Hy guys I have an array of dates such as array(5) { [0]=> string(19) "2012-06-11 08:30:49" [1]=> string(19) "2012-06-07 08:03:54" [2]=> string(19) "2012-05-26 23:04:04" ...
0
votes
1answer
321 views

sql query - variables - date - visual studio 210

Trying to search between two dates to only get certain rows. A 7 day search. @date = DateTime.Today @date2 = //need it to be the prior 7 days SelectCommand = "SELECT [DateReceived], ...
2
votes
3answers
271 views

Date Comparison PHP Mysql

I have a system that is comparing mysql tabled dates with today's date to see whether a certain document needs to be renewed: <?php $student_id = $row_student['student_id']; ...
0
votes
2answers
4k views

Creating a Time Based Reminder App in iPhone

I am working on time based reminder App. in which the user enter his reminder and time for the reminder. The problem is that how to continuously comparing the current time with the user defined time. ...
0
votes
2answers
3k views

Compare two dates in vb.net whether they are equal or not

I have a Date variable startdt and a String variable hdnsdate. Suppose if startdt has the value in the form 3/1/2012 and hdnsdate has the value in the form 03/01/2012. Than how can i compare that ...
0
votes
2answers
113 views

How can I force TSQL to accept two dates EQUAL if there is only an n miliseconds difference?

I have two tables, table1 and table2. And I join them by comparing a couple of columns and one of them is a Date column. select * from table1 t1 INNER JOIN table2 t2 ON t1.HaloDate = t2.HaloDate ...
0
votes
2answers
743 views

Compare two dates in a GridView in ASP.NET

I have a GridView with two Date columns which are EditTemplates. How do I compare the 2 dates?
1
vote
2answers
2k views

How to compare dates in Python?

I'm a Python beginner. I need to see if a date has more than X days. How can I do this in Python? I have tested something like: if datetime.date(2010, 1, 12) > datetime.timedelta(3): I got the ...
0
votes
1answer
490 views

compare date in sql statement

I am making an alert tool using web sql. I want to selects all events that occur in a specific day. when I insert the event I insert the date as a date object with this format "2011-10-14" , What ...
0
votes
1answer
77 views

On a Day Like Today program

I have made a program that finds the current date and then do a search in a php array and shows what happens On a Day Like Today. The only problem is that the program can't read the months 10-12 ...
3
votes
3answers
2k views

How to get date part (dispose of time part) from java.util.Date?

I want to compare the date part of two java.util.Date objects. How do I could achieve this. I am not looking to comparing the date, month and year separately. Thanks in advance!
0
votes
2answers
200 views

Does the java date.before function take into account the timezone?

I have the timezone set on the server to BST (British Daylight Savings Time), and the date being passed into the function was calculated in UTC. On the Java Oracle site, it simply refers to comparing ...
0
votes
2answers
347 views

sql date comparison

I was given a query similar to this select * from stuff where stuff.id = 1 and start_Dt < = todays_date and End_Dt > = todays_date I asked the person who gave it to me why the date ...
0
votes
2answers
293 views

Date validations

I have two text fields. In these text fields, I am getting dates from a picker in this format: "mm-dd-yyyy". What I want to do is validate the dates from one text field to the other, so that both text ...
1
vote
2answers
3k views

Comparing two dates in LINQ to SQL

I have a database with table named meeting. Meeting date is stored in the following form i.e. for May 2nd 2011 its stored as 5/2/2011. My requirement is to get the meetings between say 4/25/2011 till ...
0
votes
1answer
277 views

Date Best Practice

I have the following problem. I have a quartz job that runs every 5 minutes and makes a web service call retrieving a large object. The purpose of this application is that it will loop through a List ...
2
votes
3answers
16k views

Comparing dates in jquery

I am having the following codes and it though i'm having 01-Jan-2009 for DateTo and 03-Jan-2009 for DateFrom it's reading the values as NAN. Am I missing anything? I`m referencing var DateToValue ...
0
votes
2answers
538 views

Most reliable way of comparing datetimes?

I primarly use Delphi in my workplace and during some thorough unit tests which involved comparing date times I discovered that a direct comparison using the equals operator was not reliable enough ...
1
vote
2answers
6k views

PostgreSql + Date Format Convert YYYY-MM-DD to Day, Date Month Year

Suppose I am storing this format in my postgre database table. Now I have to compare this date with one of the texbox value contain date in different format. Database Date Format :: YYYY-MM-DD For ...
0
votes
4answers
501 views

sql query to compare the dates in the existing table to the selected date?

i need to compare the dates in a existing table with the selected date for equality. I am developing an asp.net application and i am tying to insert a new record in the already existing table and i am ...
0
votes
3answers
520 views

How to optimize this query using better date comparsion in SQL?

I have problem with this query, complexity of this query is not good, i use this query from long time and now this database have many rows to get selecting by this method. All index'es is added ...
4
votes
6answers
8k views

SQL Date Compare by only using Date not Time

This was originally going to be a question about how to implement this because I was stuck at a certain part but I am now curious as to why this was happening in the first place. I needed to compare ...

1 2