UPDATE t_transaction tu
JOIN (
SELECT code, MAX(flag) AS flag
FROM t_transaction
GROUP BY
code
) t
ON tu.code = t.code
SET tu.flag = t.flag
UPDATE t_transaction tu
JOIN (
SELECT code, MAX(flag) AS flag
FROM t_transaction
GROUP BY
code
) t
ON tu.code = t.code
SET tu.flag = t.flag
Aggiornamenti dal team di Microsoft Access (giugno 2017)
Come importare ed esportare un database tramite phpMyAdmin (errore 'Accesso negato creare database db_name')
Replica Londiste con PostgreSQL 9.0
Come aggiungere la colonna identità alla tabella tramite TSQL e GUI in SQL Server - Tutorial SQL Server / T-SQL Parte 40