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
The 5000n printer will only print to the manual feed tray
basic quadratic question
jQuery script error in Firebug
How do I resolve this error "javax.xml.ws.WebServiceEx
ception .... Place the resource correctly in the classpath.?
Outlook 2007 duplicate contacts created when importing from .csv
Always view the last row of a textarea box
weblogic python scripts
putting a requiredfield on a combobox in asp
ms access update query
Move Mailbox Powershell Script (sending Welcome e-mail HTML format)