请教为什么insert into 语句中 where 后连接 常量 判断表达式就不能用?
我先用如下语句:
insert INTO xuhao values(5) Where 1+1=2
但不能运行,提示:
服务器: 消息 156,级别 15,状态 1,行 1
在关键字 'Where' 附近有语法错误。
用这样可以:insert INTO xuhao values(5) SELECT 1,2 Where 1+1=2
在select语句中都可以的:select * from xuhao where 1+1=2
哪位告诉我这是怎么回事?