so Basically I have a table called \"table_1\" :
ID Index STATUS TIME DESCRIPTION 1 15 pending 1:00 Start
INSERT INTO myTable2 (ID, STATUS, TIME, DESCRIPTION) SELECT t1.ID, t1.STATUS, t1.TIME, t1.DESCRIPTION FROM table_1 as t1 WHERE STATUS = 'complete' OR TIME = (SELECT min(TIME) FROM table_1 WHERE ID = t1.ID) ORDER BY ID asc, STATUS desc