Vous pouvez utiliser INSERT INTO... SELECT
déclaration à ce sujet,
INSERT INTO tableName (A, B, C)
SELECT A, B, MAX(C) + 1
FROM tableName
GROUP BY A, B
Vous pouvez utiliser INSERT INTO... SELECT
déclaration à ce sujet,
INSERT INTO tableName (A, B, C)
SELECT A, B, MAX(C) + 1
FROM tableName
GROUP BY A, B