sql >> Database teknologi >  >> RDS >> Sqlserver

Er der en måde at VÆLGE og OPDATERE rækker på samme tid?

Overvej at se 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. Enkelte eller flere databaser

  2. node-mysql hvor går connection.end() hen

  3. Pgadmin indlæses ikke

  4. Hvordan refererer jeg en attribut inde i en tabel til en værdi inde i en ny række i den samme tabel