代码搜索:Update
找到约 10,000 项符合「Update」的源代码
代码结果 10,000
www.eeworm.com/read/428535/8861213
sql 触发器的使用.sql
select * from vote
create trigger update_vote
on vote
instead of update
as
if update(vote)
begin
update vote
set vote=vote+50
where sno='95001'
end
update vote
set vote=vot
www.eeworm.com/read/284875/8885598
sql 9-alterupdate.sql
ALTER TRIGGER TransactionDetails.trgInsTransactions
ON TransactionDetails.Transactions
AFTER INSERT,UPDATE
AS
IF UPDATE(Amount) OR Update(TransactionType)
BEGIN
UPDATE CustomerDetails.Customers
www.eeworm.com/read/284875/8885903
sql 2-correlated-subquery.sql
SELECT ShareId,MaximumSharePrice
FROM ShareDetails.Shares
UPDATE ShareDetails.Shares
SET MaximumSharePrice = (SELECT MAX(Price)
FROM ShareDetails.SharePr
www.eeworm.com/read/284875/8885949
sql 22-lob-1.sql
UPDATE TransactionDetails.Transactions
SET Notes = 'From online auction sale of Redskins memorabilia, helmet'
WHERE TransactionId = 1
www.eeworm.com/read/284875/8886010
sql 31-datatypeerror.sql
DECLARE @WrongDataType VARCHAR(20)
SET @WrongDataType = '2.0'
UPDATE CustomerDetails.Customers
SET AddressId = @WrongDataType
WHERE CustomerId = 1
www.eeworm.com/read/284875/8886025
sql 29-updateclearedbalance.sql
DECLARE @WrongDataType VARCHAR(20)
SET @WrongDataType = '4311.22'
UPDATE CustomerDetails.Customers
SET ClearedBalance = @WrongDataType
WHERE CustomerId = 1
www.eeworm.com/read/384228/8888477
sql sy3_2.sql
update pay
set base=base+200
where no='000005'
update pay
set base=1850
where no='000006'
www.eeworm.com/read/427954/8910387
cs admincontral.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using