Query to Update Multiple Rows | Updating Multiple Rows using Join
Update AdminMaster
set Username=b.Username,
Password=b.Password
from AdminMaster as a
join @TempAdmin b on a.id=b.id
//@TempAdmin is Temporary table that we can pass on stored procedure
Comments
Post a Comment