标签: mariadb
我有一种情况,我想从.bat文件调用sql文件时传递1个参数。基于该参数,我想执行以下操作:
If (Passed parameter) = 1 then use <abc>'; else use <xyz>; end if;
探讨了可以使用-e参数来完成此操作但无法成功完成此操作的选项。有人可以帮助我解决这个问题吗?
伪代码:
If (Schema Flag) = 1 then use <abc>'; else use <xyz>; end if;