Microsoft
Software
Hardware
Network
Question : How to convert a SELECT statement into an UPDATE statement using SQL Server 2005?
I am developing an application in ASP and I use SQL Server 2005.
How would you convert the following SELECT statement into an UPDATE statement so that
userid is changed from 'dreed' to 'apagan'
SELECT dbo.tSOXUsrRequest.reqID, reason, tSOXUsrRequest.appname,
dtneeded, tSOXUsrRequest.userid, tSOXUsrRequest.userName,
tSOXUsrRequest.userEml, tSOXUsrRequest.changeReque
st,
tSOXUsrRequest.dtrequested
, tSOXUsrRequest.devID, tSOXUsrRequest.dev
FROM tSOXUsrRequest LEFT OUTER JOIN tSOXSignOFF
ON tSOXUsrRequest.reqID = tSOXSignOFF.reqID WHERE
(tSOXSignOFF.usrSignOff IS NULL)
AND dev = 'bill_lee' and userid = 'dreed'
Answer : How to convert a SELECT statement into an UPDATE statement using SQL Server 2005?
Try this
UPDATE R
SET R.userid = 'apagan'
FROM tSOXUsrRequest R LEFT OUTER JOIN tSOXSignOFF O
ON R.reqID = O.reqID
WHERE (O.usrSignOff IS NULL)
AND R.dev = 'bill_lee' and R.userid = 'dreed'
Random Solutions
Sage CRM secure web link for external users
Cannot join domain due to dns issues
mcafee EPO script to remove agent and virusscan
Pre populating excel rows based on variables
Unable to access exchange webmail from a remote office
How do I trawl through an Excel 2003 range and copy certain cells of certain rows to another worksheet in VBA
INSTALL - SQUID getting "pam_auth.c:133: warning: initialization from incompatible pointer type"
Schema Changes by User
Insert into MySQL Table from MSSQL Insert Trigger
Counting the Character Length of a Long Field - Error