代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/446181/7584236
sql 4.3.6.sql
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ
UPDATE TEACHERS SET SALARY=4200 WHERE TID='200003125'
www.eeworm.com/read/446181/7584241
sql 4.3.1.sql
BEGIN TRAN
UPDATE TEACHERS SET SALARY=4200 WHERE TID='200003125'
WAITFOR DELAY '00:00:20' --延时20秒
SELECT * FROM TEACHERS WHERE TID='200003125'
ROLLBACK TRAN
www.eeworm.com/read/446181/7584243
sql 4.1.3.sql
Update courses set hour=96 where cid='10001 '
Insert teachers values('1234567890','MY','MY@ZSU.EDU.CN',3000)
Select top 10 * from teachers (HoldLock)
go
www.eeworm.com/read/446181/7584245
sql 4.1.1.sql
begin tran
update accounts set balance=balance-1000 where accountno='A'
update accounts set balance=balance+1000 where accountno='B'
commit tran
www.eeworm.com/read/446181/7584247
sql 4.3.4.sql
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
UPDATE TEACHERS SET SALARY=4200 WHERE TID='200003125'
www.eeworm.com/read/446181/7584256
sql 7.4.2.sql
USE School
GO
SET STATISTICS TIME ON
GO
UPDATE CHOICES set score = score-1
GO
www.eeworm.com/read/446181/7584257
sql 7.4.4.sql
USE School
GO
SET STATISTICS TIME ON
GO
UPDATE CHOICES set score = score+1
GO
www.eeworm.com/read/446181/7584333
sql 3.3.3.sql
USE school
go
grant update on dbo.[cs_view]([score])
to 李勇