例:列名为:A/B
select A/B from AAA
会提示无法找到对应的B,因为列名包含 / 转义字符
这时需要用到 中括号 [] 将字段名括起来就可以,如下:
select [A/B] from AAA