sql >> Databasteknik >  >> RDS >> Sqlserver

Finns det något sätt att VÄLJA och UPPDATERA rader samtidigt?

Överväg att titta på OUTPUT-klausulen :

USE AdventureWorks2012;  
GO  

DECLARE @MyTableVar table(  
    EmpID int NOT NULL,  
    OldVacationHours int,  
    NewVacationHours int,  
    ModifiedDate datetime);  

UPDATE TOP (10) HumanResources.Employee  
SET VacationHours = VacationHours * 1.25,  
    ModifiedDate = GETDATE()   
OUTPUT inserted.BusinessEntityID,  
       deleted.VacationHours,  
       inserted.VacationHours,  
       inserted.ModifiedDate  
INTO @MyTableVar;  

--Display the result set of the table variable.  
SELECT EmpID, OldVacationHours, NewVacationHours, ModifiedDate  
FROM @MyTableVar;  
GO  
--Display the result set of the table.  
SELECT TOP (10) BusinessEntityID, VacationHours, ModifiedDate  
FROM HumanResources.Employee;  
GO 


  1. Få en lista över databaspostkonton i SQL Server (T-SQL)

  2. Konvertering av MySQL-resultat till kommaseparerade värden

  3. Slumpmässigt valda rader via JPA

  4. SQL Server Senaste versioner, upplagor och SQL Server History