Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a fare riferimento a un attributo all'interno di una tabella a un valore all'interno di una nuova riga all'interno della stessa tabella

Se non hai un server Mysql 8.x puoi usarlo.

CREATE TABLE table1
(`Name_ID {FK}` int, `Completion_Date` varchar(10), `New_Time` int)
;

INSERT INTO table1
(`Name_ID {FK}`, `Completion_Date`, `New_Time`)
VALUES
(001, '16/01/2019', 108),
(001, '16/02/2019', 123),
(001, '16/03/2019', 136)
;

E puoi usare questo

select  `Name_ID {FK}`,`Completion_Date`,@quot old_time, @quot:=`New_Time` new_time
 from table1 p,(SELECT @quot := 0) r
 order by  `Name_ID {FK}`,`Completion_Date`;

per ottenere questo risultato:

Name_ID {FK}    Completion_Date     old_time    new_time
  1              16/01/2019            0           108
  1              16/02/2019            108         123
  1              16/03/2019            123         136

Si basa su questaSimula la funzione di ritardo in MySQL