so Basically I have a table called \"table_1\" :
ID Index STATUS TIME DESCRIPTION
1 15 pending 1:00 Start
you could get all the start times like this:
select id, status, min(time)
from table_1
where status = 'Pending'
group by id, status
then completion like this:
select id, status, time
from table_1
where status = 'Complete'
group by id, status
you can use union to use both, and of course try:
insert into table_2