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
How to hide a dummy date value.
User.isInRole always return false
Batch printing word document to non-default printer
The future of VBA
Teradata Where Clause - Limit date to this month
Excel - Find nearest words for top ranked (text mining)
Carrier Unlock for iPhone 3GS iOS 4.0.1 (8A306)
Will there be a 13" Macbook with an iCore processor anytime soon? Safe to buy C2D?
RSH client for windows 2008 r2
How to open an XML file and change a value.