Denne (mønster)løsning er blot en løsning, som vil hjælpe dig med at bruge IF-tilstand i MySQL-scripts -
SET @s = IF(IsTargetVersion(1.1), 'ALTER TABLE t1 ENGINE = InnoDB', 'DO SLEEP(0)');
PREPARE stmt1 FROM @s;
EXECUTE stmt1;
Denne (mønster)løsning er blot en løsning, som vil hjælpe dig med at bruge IF-tilstand i MySQL-scripts -
SET @s = IF(IsTargetVersion(1.1), 'ALTER TABLE t1 ENGINE = InnoDB', 'DO SLEEP(0)');
PREPARE stmt1 FROM @s;
EXECUTE stmt1;