sql server的sql 语句中的列名包含[]时候,把]替换成]]就可以eg:
create table p.e_LOG_WebServer
(
[BSCFlg] int,
[reservedBySwAllocation[0]]]
varchar(
1024),
[webServerPaths] varchar(
1024)
);
select * from p.e_LOG_WebServer
转载于:https://www.cnblogs.com/hongjiumu/p/3174674.html