Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server 2008 で複数のレコードを更新するにはどうすればよいですか? 次のクエリを実行したかったのですが、失敗しました。
UPDATE TABLE SET type = 1 WHERE type is NULL
このようなものを使用してください
Update T SET type = 1 FROM [Table] as T WHERE type IS NULL