Microsoft
Software
Hardware
Network
Question : Do you know how to select fields from 2 files based on a join of the files?
Do you know how to select fields from 2 files as follows:
--select * from dbo.tSOXUsrRequest As U
--WHERE appname = 'BRS' and userid = 'quincy'
select * from dbo.tSOXSignOff As S
WHERE U.reqID = S.reqID and S.dtUsrSignOff is Null
and U.appname = 'BRS' and U.userid = 'quincy'
Answer : Do you know how to select fields from 2 files based on a join of the files?
SELECT *
FROM tSOXUsrRequest
LEFT JOIN tSOXSignOff ON tSOXUsrRequest.reqID = tSOXSignOff.reqID
WHERE (tSOXUsrRequest.appname = 'BRS' and tSOXUsrRequest.userid = 'quincy')
Random Solutions
SAS 9.1 - Excel Import
Adobe InDesign CS4 Application Error
DCOM was unable to communicate with the computer "Name" using any of the configured protocols.
Microsoft CRM Product question
Padding Number
I have an Exchange 2003 on a SBS2003 and I need it to handle 2 or more email domains
AD authentication and Blackberry Enterprise Server
Network issues loading company web-site
Raid 1 Rebuild Failed - Adaptec 1210SA
GROUP BY Case Statements