구문 오류 Maria에서 변수 선언 오류DB 다음 쿼리에 문제가 있습니다. START TRANSACTION; INSERT INTO posts ( -- not relevant ) VALUES ( -- insert works as intended ); COMMIT WORK AND CHAIN; DECLARE @insertId INT; -- this is where i get the syntax error SET @insertId = LAST_INSERT_ID(); UPDATE posts SET guid = CONCAT('foo.bar?p=', @insertId) WHERE id = @insertId; -- continue to work with the variable INSERT INTO postmeta(po..