É possível definir o valor de incremento automático no MySQL com base em uma variável?
SELECT 1 + MAX(id)
INTO @newAiValue
FROM Result_Import_Archive;
ALTER TABLE Result_Import
AUTO_INCREMENT = @newAiValue;
Isto é o que pretendo fazer, porém, o MySQL reclama que está sintaticamente incorreto.