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
Using jqzoom (jquery)
How to change properties.settings after deployment of windows application
How to export data from Sql server to text or xml file using SSIS
Am I elegible for a free upgrade to Outlook 2010 with this?
Access user control function from master page
Cisco VTY Access to particular line number
Standard server 2008 to SBS premium 2008
How do I convert string to char?
how to find my Symantec pcAnywhere serial number
How to raise 2 GB mailbox limit in Exchange 2007?