On 11/11/2015 3:56 AM, J.L. Blom wrote:
> So e.g. table one ends (in column one) on 2015-07-21 11:55
> and the next starts on                                      2015-07-19
> 17:50
> There is an overlap op 2 days approx. 380 rows (each row contains 53
> items).
> Is there a script - or commando to combine the tables excluding the
> overlapping rows?

Are you looking for something like

insert into TableOne
select * from TableTwo t2
where t2.timestamp > (select max(timestamp) from TableOne);

-- 
Igor Tandetnik

Reply via email to