Tagged Questions
The date-arithmetic tag has no wiki summary.
11
votes
13answers
20k views
The difference in months between dates in MySQL
I'm looking to calculate the number of months between 2 date time fields.
Is there a better way than getting the unix timestamp and the dividing by 2 592 000 (seconds) and rounding up whithin MySQL?
8
votes
4answers
590 views
How to calculate next Friday at 3am?
How can you calculate the following Friday at 3am as a datetime object?
Clarification: i.e., the calculated date should always be greater than 7 days away, and less than or equal to 14.
Going with ...
8
votes
7answers
7k views
T-SQL to trim a datetime to the nearest date?
Duplicate of What's the BEST way to remove the time portion of a datetime value (SQL Server)?
I have a column that tracks when things are created using a datetime, but I'd like to generate a report ...
4
votes
2answers
92 views
Calculate how many months old in MySQL
I'm creating a child check-in system and I need to work out how many months old children are. This is quite easy however I only want to extract children who's "month birthday" it is.
What I mean by ...
4
votes
1answer
39 views
How do I a convert a number to an INTERVAL of minutes?
In pseudo-Oracle, I want to do the following:
select systimestamp + to_interval(select NUMERIC_COLUMN from SOME_TABLE where SOME_TABLE_PK = :stuff) from dual;
If the number of minutes were always ...
4
votes
5answers
4k views
Comparing dates in Oracle using the decode function
I need to compare two dates using the Oracle decode function to see if one is less than or equal to the other.
I found this article - http://www.techonthenet.com/oracle/functions/decode.php
Which ...
4
votes
1answer
1k views
ORACLE SQL Date range intersections
I have a table T1, it contains a NAME value (not unique), and a date range (D1 and D2 which are dates)
When NAME are the same, we make a union of the date ranges (e.g. B).
But as a result (X), we ...
4
votes
3answers
8k views
Oracle date “Between” Query
I am using oracle database. i want to execute one query to check the data between two dates.
NAME START_DATE
------------- -------------
Small Widget 15-JAN-10 ...
3
votes
2answers
158 views
How to get a list of months between 2 given dates using a query?
I have 2 dates, say 28-Mar-2011 and 29-Jun-2011. I need an sql query that will display the months between these 2 dates including the months containing the dates, ie. June, May, April and March.
3
votes
1answer
51 views
Time difference need to be added in start time
I hope any one will help me with this.
I have two datetime start and end time . I get the time difference between two.
eg.
Start Time 18/07/2011 08:49:48
End time 18/07/2011 08:49:52
...
3
votes
3answers
215 views
Date arithmetic in Erlang
I have a date in this format {Y,M,D}. Is there any good supporting libraries or, tricks I can use to simply, say subtract three months from this date without running into problem with invalid dates, ...
3
votes
5answers
732 views
ADD_MONTHS function does not return the correct date in Oracle
See the results of below queries:
>> SELECT ADD_MONTHS(TO_DATE('30-MAR-11','DD-MON-RR'),-4) FROM DUAL;
30-NOV-10
>> SELECT ADD_MONTHS(TO_DATE('30-NOV-10','DD-MON-RR'),4) FROM DUAL;
...
3
votes
1answer
4k views
Oracle SQL Where clause to find date records older than 30 days
I want to find records in a (Oracle SQL) table using the creation date field where records are older than 30 days. It would be nice to find records using a operators like > but if anyone can suggest ...
3
votes
6answers
1k views
SQL: Is it possible to SUM() fields of INTERVAL type?
I am trying to sum INTERVAL. E.g.
SELECT SUM(TIMESTAMP1 - TIMESTAMP2) FROM DUAL
Is it possible to write a query that would work both on Oracle and SQL Server? If so, how?
Edit: changed DATE to ...
3
votes
3answers
885 views
How to subtract years in R?
I have a date in R, e.g.
dt = as.Date('2010/03/17');
I would like to subtract 2 years from this date, without worrying about leap years and such issues, getting as.Date('2010-03-17'). How would I ...
3
votes
4answers
210 views
Unusual runtime of date functions in Oracle
I am running a query that returns me a collection of date objects for months between a certain date range. The query works fine, but is very slow (~2 seconds on my local machine, ~30 in our corporate ...
3
votes
3answers
52k views
Calculate difference between 2 date / times in Oracle SQL
I have a table as follows:
Filename - varchar
Creation Date - Date format dd/mm/yyyy hh24:mi:ss
Oldest cdr date - Date format dd/mm/yyyy hh24:mi:ss
How can I calcuate the difference in hours ...
3
votes
5answers
3k views
Simple Java Date Calculations
I would like to do simple date calculations in Java. For example, compute the difference in days between to dates (having a 0 time component). Of course you could do a simple substraction of ...
2
votes
2answers
91 views
SQL date diff disregarding nights
using an Oracle database, I need to know the difference between any two dates (in seconds), disregarding the interval from 6pm to 8am.
So for example, the difference between 01.11.2011 1pm and ...
2
votes
6answers
293 views
how to subtract 2 dates in oracle to get the result in hour and minute
I want to subtract 2 dates and represent the result in hour and
minute in one decimal figure.
I have the following table and i am doing it in this way but the
result is not as desired.
...
2
votes
4answers
542 views
Oracle DateTime in Where Clause?
I have sql something like this:
SELECT EMP_NAME, DEPT
FROM EMPLOYEE
WHERE TIME_CREATED >= TO_DATE('26/JAN/2011','dd/mon/yyyy')
-> This returns 10 rows and TIME_CREATED = '26-JAN-2011'
Now when ...
2
votes
2answers
131 views
Oracle Interval Bug?
I'm using this sql query:
select sysdate, sysdate - INTERVAL '6' month from dual;
But it is return: ORA-01839: date not valid for month specified.
Which is weird, because if I change the the ...
2
votes
2answers
241 views
Add Day to Timestamp
How do I add days to a timestamp? If my timestamp is 01-JAN-2011 11-09-05 and I add 2 days, I want 03-JAN-2011 11-09-05.
2
votes
2answers
129 views
How would I mass update date and time?
I have to query an update for date and time. I know how to update the date alone, but I am having trouble with adding the time to the function. Right now, as it stands, it reads 4/20/2011 1:32:07 PM. ...
2
votes
5answers
111 views
to get next date
I have a field next_repay_date as varchar2(11)
i need to get the date after 2 days
suppose i m having next_repay_date as 25-Sep-2011 as varchar2(11), i should get a result as 27-Sep-2011
please ...
2
votes
4answers
149 views
What is the recommended way of doing date arithmetics in Perl?
What is the recommended way of doing date arithmetics in Perl?
Say for example that I want to know the date three days ago from today (where today = 2010-10-17 and today - 3 days = 2010-10-13). How ...
2
votes
2answers
345 views
how can I add 100 years to a date in Advantage Database
I have a bunch of records in my Advantage Database that ended up with the year 1909, rather than 2009. How can run an update statement that will add 100 years to each of these dates? (Advantage is ...
2
votes
3answers
293 views
Regarding date in sql
Here's my query:
select *
from test n
WHERE lower(process_name) like 'test%'
AND ( test_id is NULL
OR TO_CHAR(ADD_MONTHS(TRUNC(SYSDATE),-6),'YYYYMM') > ...
1
vote
1answer
30 views
Create View with Year Days
I have build a view with following query.
SELECT TRUNC(sysdate - (365), 'YYYY') + (level-1) AS the_day
FROM dual
CONNECT BY level <= to_number(TO_CHAR(last_day(add_months(TRUNC(sysdate, ...
1
vote
2answers
33 views
Retrieving last year's data only if a single record for last month
I have two tables
USER and TRANSACTION
i want to choose the data from TRANSACTION table for last one year if the USER has made any transaction in the last month
USER and TRANSACTION table are ...
1
vote
1answer
100 views
Compare two times in oracle
In Oracle :
My table has a timestamp column with time value of '02-NOV-11 12.00.00.000000000 AM' .
I tried to compare two dates:
select id from table1 where mytime = '02-NOV-11'
But it returns ...
1
vote
5answers
70 views
Date function on oracle
I've got a question about date function on oracle.
I have the following table
statistic_table(
pages AS varchar(10),
date_created AS date
);
I have the following sql
SELECT COUNT(*) FROM ...
1
vote
1answer
179 views
How to optimize oracle query from partitioned table?
I have a partitioned table by date (by days) and a local index on the fields (including date field). If I make a query:
SELECT * FROM table t WHERE t.fdate = '30.06.2011'
it is fulfilled ...
1
vote
6answers
554 views
java calculate time between two timestamps
I need to calculate the time passed between two dates.
The catch here is that I need to show it as YouTube does with its video comments timestamps. That is, to show it by just the largest measure.
...
1
vote
1answer
79 views
Pull records loaded at a particular time everyday from Oracle
Hi
I am using Oracle Database.
I want to pull the records which are loaded between 1:55 PM to 2:10 PM everyday, regardless of the date.
What SQL query should I use, I have a date_upd column which ...
1
vote
1answer
115 views
Oracle - derive minutes from a Timestamp value
I have a table with a Timestamp(6) column called START_DATE. Given this query:
SELECT SYSDATE - MIN(START_DATE) FROM MYTABLE
might return:
0 1:12:32.2819281
I want that returned value in ...
1
vote
2answers
1k views
Oracle (10g) equivalent of DATEADD(weekday, -3, GETDATE())
I'm looking for the Oracle (10g) equivalent of:
DATEADD(weekday, -3, GETDATE())
from T-SQL (SQL Server) . This subtracts 3 weekdays from the current date. I'm not concerned about holidays or ...
1
vote
2answers
116 views
Oracle date difference with case
I have the following:
select nvl (
(select 1
from tableA, tableB
where tableA.id(+) = 9999
and tableB.project_id(+) = tableA.project_id
and sysdate - tableA.start_date ...
1
vote
4answers
480 views
SQL - Week calculation
I've written an SQL statement which gets the current week based on sysdate. For eg: If the date is March 12th, 2011 (saturday) then the o/p should be
03/06/2011-03/12/2011
But somehow, when I ...
1
vote
3answers
306 views
PL/SQL procedure random timestamp
how i can generate a random timestamp and put it into a var?
Thanks,
Tommaso
1
vote
3answers
954 views
Getting Last Day of Previous Month in Oracle Function
I need a function in Oracle like this.
When i giving a parameter a simple date. Then function should getting me last day of the previous month.
Example:
FunctionName(10.02.2011) Result should be ...
1
vote
1answer
191 views
Oracle PL/SQL datetime math - intervals
I've been using syntax like {?EndDate} - INTERVAL '1' YEAR for a while now, and I knew there was an issue that I was going to hit eventually, and I just hit it. I tried to do DATE '2010-12-31' - ...
1
vote
2answers
158 views
Writing an Oracle function to get the time of an event back if its not in another event
Let me be explain what I want: There are some components which can fail due to some reasons and they have priorities. Now, what I want is that if an event occurs and its priority is low, I will pass ...
1
vote
2answers
807 views
ORA-01843 “not a valid month” and ORA-01861 “literal does not match format string”
SQL> select to_timestamp('2010-12-14:09:56:53') - to_timestamp('2010-12-14:09:56:46') from dua
l;
select to_timestamp('2010-12-14:09:56:53') - to_timestamp('2010-12-14:09:56:46') from dual
...
1
vote
1answer
108 views
Most efficient way in MySQL to retrieve values in a given week?
I need to produce a report that provides the count of each particular promotional code used within a particular week. Example table structure:
CREATE TABLE `user_promo_codes` (
`id` bigint(20) ...
1
vote
2answers
223 views
Difference in time between records
I have a table that has (among others) a timestamp column (named timestamp; it's a standard Oracle DATE datatype). The records are about 4-11 minutes apart, about 7 or 8 records every hour, and I'm ...
1
vote
4answers
520 views
oracle 10g submit job function error
I'm trying to schedule a job in oracle 10g but it says:
ORA-01846: not a valid day of the week.
Heres my code:
declare
v_job_id1 number(19,0);
v_job_id2 number(19,0);
begin
...
1
vote
3answers
910 views
SQL Server version of Oracle's ADD_MONTHS()
In Oracle, you can use ADD_Months to add months on the fly in the sql statement. What is the MS SQL version.
Oracle Example
Select TestDate,
TestFrequency,
ADD_MONTHS(TestDate, ...
1
vote
5answers
516 views
Comparing the Oracle Interval Data Type
I have an oracle time interval in a select statement like this:
SELECT ...
CASE WHEN date1 - date2 > 0
THEN 'No'
ELSE 'YES'
END
This fails with an invalid data type. So I tried ...
1
vote
3answers
367 views
How do update a date column by changing only the year and not the day or month using PLSQL?
I have a database table containing credit card records. One of the fields is a Date field. I would like to update this field by changing the year portion of the date to 2011 if the year is less than ...