在SQL Server中如何批量修改表中的值?
2013-08-17
/*这一段轮和槐模执行四次 score的值分别改掉腊明盯*/
select top @id=id from 表 where score is null
update 表名 set Score=80 where id=@id
推荐于2017-12-15
数据更新语句:update set 字段名=值 where 条件;
update set Score=80 where 你的条件
[如果你要批量改,就只能改成一样的,如Score=null,即是把Score为null的字段族猜值全部都设为80;
但是如果你的条件为某一特定条件,那么就不会全部改为相清穗李同数值了。如ID=1类似]
推荐于2016-04-13 · 知道合伙人数码行家
蠢核 首先,在sql server 2008下创建一个示例数据库名为TableTypeTest,
再在该数据库下创建一个名为Class和Student的表,结构如下:
在TableTypeTest数据库下创建一个自定义表类型,取名StudentType,如下:
CREATE TYPE [dbo].[StudentType] AS TABLE(
[SID] [int] NOT NULL,
[CID] [int] NOT NULL,
[SName] [nvarchar](50) NOT NULL
)
GO
然后,创建两个存储过程,批量添加带如掘和批量修改,分别为InserNewStudent和UpdateStudent,如下
InserNewStudent:
CREATE PROCEDURE [dbo].[InserNewStudent]
@Dt dbo.StudentType readonly
AS
BEGIN
insert into dbo.Student(CID,SName) select t.CID,t.SName 橡袭from @Dt as t
END
GO
UpdateStudent:
2013-08-17
2013-08-17
select '80'核核
union
select '87'
union
select '90'
union
select '95'肢键