Top "Date-comparison" questions

This tag refers to the process of comparing two or more dates with one another.

Comparing Dates in Oracle SQL

I'm trying to get it to display the number of employees that are hired after June 20, 1994, Select employee_id, count(*) …

sql oracle date-comparison
How to compare two dates in Objective-C

I have two dates: 2009-05-11 and the current date. I want to check whether the given date is the …

objective-c cocoa date date-comparison
compare string with today's date in JavaScript

I've got a string from an input field which I use for date with a format like this 25-02-2013. …

javascript date date-comparison
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 …

postgresql sql date-comparison
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 …

jquery date-comparison
Comparing dates in MySQL ignoring time portion of a DateTime field

I need to compare dates in MySQL ignoring the time portion in a DateTime column. I have tried the following …

mysql date datetime date-comparison
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, …

sql postgresql date date-comparison
Oracle use LIKE '%' on DATE

My table myTab has the column startDate, which has the datatype "DATE". The data in this column are stored like …

sql oracle date-comparison
Get most recent date from an array of dates

I have the array of dates below 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" [3]=&…

php arrays date date-comparison
Difference between 2 dates in weeks and days using swift 3 and xcode 8

I am trying to calculate the difference between 2 dates (one is the current date and the other from datepicker) in …

swift date-comparison