Gaps and islands problems involve finding a range of missing values (gaps) or a range of consecutive values (islands) in a sequence of numbers or dates.

learn more… | top users | synonyms

5
votes
2answers
129 views

SQL Query to group items by time, but only if near each other?

I am trying to craft a SQL statement to pull sample values from a DB. The table contains values that pertain to tool changes in a CNC machine. The current statement I have pulls values properly, but ...
0
votes
1answer
57 views

SQL Server Membership Date Range

I am a newbie to SQL Server with a rather complex SQL task and none of the solutions I have found so far is fit for my problem below. I have a database table that currently holds membership joining ...
1
vote
1answer
135 views

Find Gaps in Date Ranges using sql in Oracle

I need to find Gaps between DateRanges of base and test ranges using sql.here is my example SD and ED are start and End Dates. all rows for both A and B are in same table. A's Date ID SD ...
0
votes
1answer
168 views

SQL Server 2008 finding missing rows [duplicate]

I have a huge DB and one table in particular is missing rows. I know this to be true but I need to find the gaps and show them. The primary key is the sequence number column. I need to show the actual ...
2
votes
3answers
92 views

SQL Server 2008 R2 - Islands and Gaps [closed]

I have a simple 2 column table. PctGain contains weekly percentage stock market gains. WSeqkey contains a contiguous integer value that increments each new week. There are approximately 3300 rows in ...
0
votes
2answers
96 views

SQL Count Grouping by a sequence of numbers

i have a SQL table like this: id pNum ----- -------- 100 12 100 13 100 15 100 16 100 17 200 18 200 19 300 20 300 21 300 25 and i want to group by the ...
1
vote
2answers
50 views

Query in oracle for required data in specific formate

I have data in table as below : Three Columns date1 fromdate value --------------------- 14 0 150 14 2 150 14 3 150 14 4 120 14 5 120 14 ...
1
vote
1answer
190 views

SQL Query to group continuous range of numbers into different grouping sets

I've a table with approximately more than a million records. Few of the sample values are given below: Group MemberNo ABC 100 ABC 101 ABC 200 ABC 201 ABC ...
4
votes
1answer
99 views

Algorithm to find the largest land-mass a city is connected to?

I have a black and white picture of the world map. I convert the pixels to a grid of binary values (0 for water, and 1 for land) indexed by coordinates (i, j). Now, say I randomly pick a point on ...
0
votes
3answers
72 views

I require to create an SQL or PLSQL Query for merging and ordering data in a table

I am trying to create a SQL query that will help me get a proper ordered output from the below data. Data in table : Cust num Eff_Date Exp_date 1001 1234 ...
2
votes
3answers
88 views

Transform single date values into date interval

I need a query which adds up single date rows (not necesarilly continuous) into intervals taking into account the id of an object. I have a select query, which returns following data id date ...
1
vote
0answers
65 views

How to find a set of missing dates in a table from date range query

There are some stackoverflow posts related to my question but not all that similar. I would like an efficient and somewhat elegant(if possible) solution as to get an array of missing dates after ...
0
votes
0answers
37 views

Show all date between two date range Using mysql [duplicate]

Possible Duplicate: MySQL how to fill missing dates in range? I have table with name "trip_data".There it is having four fields |trip_paramid|fuel_content|creation_time|vehicle_id I ...
1
vote
3answers
173 views

How to fill timestamp gaps in a Postgres query?

Given the following table: CREATE TABLE channel1m ( ts TIMESTAMP WITHOUT TIME ZONE NOT NULL, itemId BIGINT, value BIGINT ) in which a row may be inserted each minute, per itemId, as follows: ...
0
votes
1answer
145 views

MySQL - is it possible to display empty rows? [duplicate]

Possible Duplicate: Displaying zero valued months with SQL For a certain attribute, is it possible to display its rows even if its empty? Say I have attribute date_of_car_sale. Also, let's ...
2
votes
2answers
119 views

Crosstab SQL rows on Date Islands with SUM of decimal column

Similar Question: Crosstabbing rows based on sequence islands in a list of times Take the following example data: Employ Date Duration 0000001 2012-11-12 9.00 0000001 ...
1
vote
1answer
115 views

how i can calculate last 31 days count using mysql? [duplicate]

Possible Duplicate: MySQL how to fill missing dates in range? I have a table with the following columns: id, submitdate, clicks. Now I want to retrieve the number of clicks per day ...
2
votes
3answers
52 views

Break a single record into multiple

Usually this works the other way around, but I'd like to break single records into multiple records through SQL. We store a range of with a begin and end date, but are needing to export a record for ...
3
votes
1answer
196 views

SQL Server CE Select count of employee posts every year between 2 dates

I have an Employees table with columns ID, PostID, StartDate, EndDate. Sample Data ID PostID StartDate EndDate ---------------------------------------- 1 1 2005/15/08 null ...
2
votes
1answer
141 views

Mysql select distinct only if certain time difference exist

I have a rather strange question. I have a really big table which is the log of all the request made by everyone in my webservice. This table has id, user_id, and a datetime field. I now want to ...
4
votes
1answer
105 views

Grouping on a column which has multiple Groups of Duplicate data

I need to group some data based on dates at locations including identifying when a range of dates has no location. I'm some of the way there in that I have managed to produce a list of ALL the dates ...
2
votes
3answers
531 views

SQL: create sequential list of numbers from various starting points

I'm stuck on this SQL problem. I have a column that is a list of starting points (prevdoc), and anther column that lists how many sequential numbers I need after the starting point (exdiff). For ...
1
vote
2answers
273 views

mysql date list with count even if no data on specific date [duplicate]

Possible Duplicate: MySQL how to fill missing dates in range? I'm trying to make a graph from mysqldata, Postid | date | text 1 | 2012-01-01 | bla 2 | 2012-01-01 | bla 3 ...
7
votes
3answers
219 views

Partially denormalising unicorn observations

There are a number of researchers observing the world's last remaining unicorns, on Easter Island1. Each day the researchers record which unicorn they sighted, the date of the sighting, the number of ...
0
votes
1answer
117 views

Cropping overlapping timespans by priority in SQL server

I have a large database table with timespans described by start and stop time. Easy timespan has a priority and the timespans might overlap each other. I need to process it so that overlaps will be ...
1
vote
1answer
149 views

Jump SQL gap over specific condition & proper lead() usage

(PostgreSQL 8.4) Continuing with my previous example, I wish to further my understanding of gaps-and-islands processing with Window-functions. Consider the following table and data: CREATE TABLE T1 ( ...
3
votes
1answer
133 views

Detect SQL island over multiple parameters and conditions

(PostgreSQL 8.4) I got a great introduction to SQL gaps-and-islands here on Stack Overflow but I still have a question. Many island detection CTEs are based on a running order of a timestamp and some ...
6
votes
2answers
207 views

Filtering out duplicate subsequent records in a SELECT

(PostgreSQL 8.4) Table "trackingMessages" stores tracking events between mobile devices (tm_nl_mobileid) and fixed devices (tm_nl_fixedId). CREATE TABLE trackingMessages ( tm_id SERIAL PRIMARY ...
3
votes
2answers
323 views

How to group continuous ranges using MySQL

I have a table that contains categories, dates and rates. Each category can have different rates for different dates, one category can have only one rate at a given date. Id CatId Date ...
2
votes
2answers
922 views

How to identify the first gap in multiple start and end date ranges for each distinct member in T-SQL

I have been working on the below but getting no results and the deadline is fast approaching. Also, there are over a million rows as the below. Appreciate your help on the below. Objective: Group ...
3
votes
5answers
145 views

SQL - Transpose Interval

I'm trying to solve an SQL problem (even don't know if this is possible or not). Let me try to explain. We want to transpose "range" of records based on date (interval) in one table to another table ...
1
vote
2answers
401 views

islands and gaps tsql

I have been struggling with a problem that should be pretty simple actually but after a full week of reading, googling, experimenting and so on, my colleague and we cannot find the proper solution. ...
3
votes
3answers
214 views

Oracle SQL. What statement should I use

DATA given: inventory_num_id inventory_group_id num code 9681066 100003894 211 E 9679839 100003894 ...
2
votes
2answers
234 views

Calculate time between On and Off Status rows SQL Server

I´m using SQL Server 2008, how can I calculate the time between On and Off status? I have the following table (ordered by timestamp): ID | EQUIP_ID | TIMESTAMP | STATUS (1 on/0 off) 1 | ...
0
votes
1answer
180 views

Filling in missing dates DB2 SQL

My initial query looks like this: select process_date, count(*) batchCount from T1.log_comments order by process_date asc; I need to be able to do some quick analysis for weekends that are ...
7
votes
3answers
391 views

Check for x consecutive days - given timestamps in database

Could anybody give me an idea or hint how you could check for X consecutive days in a database table (MySQL) where logins (user id, timestamp) are stored? Stackoverflow does it (e.g. badges like ...
1
vote
2answers
449 views

How can I identify groups of consecutive dates in SQL?

Im trying to write a function which identifies groups of dates, and measures the size of the group. I've been doing this procedurally in Python until now but I'd like to move it into SQL. for ...
2
votes
2answers
339 views

group by min and max date

date | name | go to work ------------+------------+--------- 02/01/2012 | Mike | train 03/01/2012 | Mike | train 04/01/2012 | Mike | bus 07/01/2012 | Mike ...
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: ...
1
vote
1answer
193 views

How do I find the longest time period without gaps in SQL? [duplicate]

Possible Duplicate: SQL: finding longest date gap I've got a table of below structure: | LearnerId | FirstName | LastName | EnrollmentDate | CompletionDate | I need to get the longest ...
1
vote
2answers
150 views

SQL query to return nil for dates not present in the table

I have a table 'my_table'. It has the following data : ID --- Date 1 --- 01/30/2012 2 --- 01/30/2012 3 --- 05/30/2012 I can write a SQL query to return the count of ...
13
votes
6answers
1k views

sql query to get deleted records

You have a table table1 that contains id column, that is int(11), not null, auto_increment and starts from 1. Suppose, you have 10,000 records. It is clear the id of the last record is 10,000. Once ...
1
vote
5answers
3k views

How to check any missing number from a series of numbers?

I am doing a project creating an admission system for a college; the technologies are Java and Oracle. In one of the tables, pre-generated serial numbers are stored. Later, against those serial ...
2
votes
1answer
366 views

Find missing time intervals in a table

I have the following table which contains values read every 15 minutes from several different devices: ID DeviceID Date Value ---------------------------------------------- 1 ...
4
votes
3answers
190 views

Oracle Grouping

I want to be able to do is sum up the time for each "episode" of time the ID is with one group and than get the first episode time for NC to C and C to NC and also the last episode time from NC to C ...
1
vote
1answer
200 views

fill in gaps while merging data in python

here is my problem: I'm starting from several matrices to which extract data to build a new and general matrix. The first step is to read the infiles with csv module and extract "position" values ...
0
votes
2answers
126 views

Using Inner Join to determine the interval between specific records and related events in a table

I have a simple table that is used to record events against specific visits: Describe Histories; +------------------+ | Field | +------------------+ | HistoryId | ...
1
vote
5answers
569 views

how find “holes” in auto_increment column?

when I DELETE, as example, the id 3, I have this: id | name 1 | 2 | 4 | 5 | ... now, I want to search for the missing id(s), because i want to fill the id again with: INSERT INTO xx ...
5
votes
3answers
604 views

Group data by the change of grouping column value in order

With the following data create table #ph (product int, [date] date, price int) insert into #ph select 1, '20120101', 1 insert into #ph select 1, '20120102', 1 insert into #ph select 1, '20120103', 1 ...
0
votes
3answers
382 views

No records for given month in SQL COUNT and GROUP BY Month

I have the following set of data: ID | CREATED | USER -------------------------- 1 | 2012-01-14 | XYZ 2 | 2012-03-14 | XYZ 3 | 2012-03-15 | XYZ 4 | 2012-03-24 | ABC 5 ...

1 2 3