Posts by Phlopter • 13 points
1 post
-
1
votes2
answers15532
viewsQ: How to do an UPDATE using data from two different tables?
Once upon a time the table: Id dado1 dado2 01 1000 10 02 1234 12 03 9999 1 I had a task cron which performed the following update daily: UPDATE tabela1 SET dado1 = dado1 + dado2; Only to organize…