数据库名称:MSSQL
数据库版本:SQL 2008以上
内容/问题描述:其实只是一个语法的描述而已,就是
Insert into table (A,B,C) values (@A,@B,@C)
跟
Update table set [email protected], [email protected], [email protected] where pk=pk
为什么insert 语法不设计成update这样,可以用字段的对应,感觉字段一多
就很麻烦,有人知道为什么吗?
觉得应该如下比较好
insert into table set [email protected], [email protected], [email protected]