将参数从批处理文件(MariaDB)传递到.sql文件

时间:2019-02-11 08:21:32

标签: 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;

0 个答案:

没有答案