我正在尝试找出IF THEN条件的语法:
我尝试过的事情:
SET @admin := (SELECT id FROM table WHERE username="admin");
IF (@admin IS NOT NULL) THEN
// Need to do SET/UPDATE commands for various tables depending on if admin is present.
END IF;
这会引发语法错误。
我当前正在使用MYSQL:5.7。 我知道这里有this syntax,,但对我的要求不起作用。 我需要的是this。
关于如何解决上述查询的任何想法?