This should be a simple syntax thing: I m trying to set a variable in MySQL equal to the result of a query for instance:
SET @variable1 = SELECT salary FROM employee_info WHERE emp_id = 12345678;
基本上,我希望把雇员的工资 储存起来,作为一个变量 然后我就可以操纵和添加。
正确的语法会是什么 因为我不能让它工作。