问题描述
我正在尝试设置一个批处理脚本,该脚本基本上针对数据库运行 sql 语句,如果脚本返回结果,它将遵循一些逻辑。
有没有办法在 sqlCMD 中使用带有 % 的 LIKE 运算符,如下所示。由于 .bat 文件将 % 视为命令,因此目前我没有根据查询获得任何行。
sqlcmd -S servername -d dbname -E -Q "SELECT * from soMetable WITH (NOLOCK) where col_1 like '%sE%'"
解决方法
在批处理文件中,您可以转义为:
&
将写为 ^&
%
将写为 %%
两个 %%
等于 %
在直接 CMD 中
&
将写为 ^&
%
不需要转义