例如,我想在 PowerShell 中运行以下 SQL 查询:
select
item1, --this is a comment
item2
from myTable
如果我尝试使用 Invoke-Sqlcmd 在 PowerShell 中运行此查询,则会收到语法错误,因为它无法将注释解析为注释:
Invoke-Sqlcmd -Query 'select item1, --this is a comment item2 from myTable'
有没有办法保留我的查询评论?