Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a query that will figure out the previous/next day from today that has a record in the table, and then get all rows for that day.

When data is inserted, the days can differ. For example, just because it is tuesday does not mean the previous day is monday. The previous day could be sunday, saturday, or even wednesday of last week.

I'm trying to figure out how to best select the previous and next day (that is not today) that has a record. Then also, in the same query, get all of the rows for that day.

I don't know if there is a function or anything for this, I'm pretty stumped. I know how to do this with 2 queries, but I want to do it with 1. Any help would be greatly appreciated.

share|improve this question
1  
So you don't need previous and next day. You need the nearest day, either before or after today – Raffaele Jan 12 at 8:57
yes that is correct – scarhand Jan 12 at 12:58

1 Answer

up vote 0 down vote accepted

The following queries return the events in the nearest day, either in the past or in the future:

select 'Nearest in the future';

select * from job where schedule = (
  select schedule from job where schedule > date('now')
         order by schedule limit 1
);

select 'Nearest in the past';

select * from job where schedule = (
  select schedule from job where schedule < date('now')
         order by schedule desc limit 1
);

Given the sample schema:

create table if not exists job (
  id integer primary key not null,
  name text,
  schedule text
);

insert into job (name, schedule) values ( 'foo', date('now', '+32 days') );
insert into job (name, schedule) values ( 'bar', date('now', '+12 days') );
insert into job (name, schedule) values ( 'baz', date('now', '+12 days') );
insert into job (name, schedule) values ( 'woo', date('now', '+55 days') );
insert into job (name, schedule) values ( 'qoo', date('now', '-32 days') );
insert into job (name, schedule) values ( 'bzz', date('now', '-18 days') );
insert into job (name, schedule) values ( 'frr', date('now', '-18 days') );
insert into job (name, schedule) values ( 'trr', date('now', '-55 days') );

ORDER BY in conjuction with LIMIT 1 does the trick. Use > for the nearest in the future, and < for nearest in the past (and reverse the ordering). You may want to add indices on the schedule column to improve the performance.

share|improve this answer
that would only get 1 record, i want to get all records for the nearest day that is not today. – scarhand Jan 12 at 12:58
@scarhand so just use it in the WHERE clause – Raffaele Jan 12 at 13:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.