SQL Server Insert with where子句

时间:2015-02-10 14:41:52

标签: sql sql-server where

我有这样的查询:

Insert into Table1 (Code)
Values ('ss23')
Where Table1.sequence between '0' and '999'

我收到以下错误:

  

关键字'其中'。

附近的语法不正确

1 个答案:

答案 0 :(得分:2)

使用insert将新数据插入表格。但您更愿意更新现有数据。使用update进行此操作

update Table1
set code = 'ss23'
Where sequence between 0 and 999