Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MYSQL 中,如何将fname表ftable中的字段名称分配给触发器查询中的变量?
fname
ftable
我知道mysql全局变量:@@ 局部变量?@
@@
@
但这甚至是正确的语法吗?
您可以从选择中的字段中分配它;如果返回多行,它将获得最后选择的值。
SELECT @tmp:=fvalue FROM ftable WHERE ...
这里有一个简单的SQLfiddle。