Microsoft
Software
Hardware
Network
Question : left join with specific right table records
I have 2 tables titles and requests
requests has a field for the date of the request and an id of teh person requesting it
select * from titles left join requests titles on titles.id=requests.title
This will show all the tiles and the corresponding requests (if any). A person can have multiple requests for a given title. Fine.
I need a query that will show all title but in each title instead of all requests only those of a specific person...
Answer : left join with specific right table records
select * from titles left join (Select * from requests where person = <somevalue> ) as q1
on titles.id=q1.title
Random Solutions
How do I make Firefox prompt me for an application to open XML files?
MailChimp WordPress Plugin Embedded styles display: none; hiding form, Part 2
Formula to split Names
How to export images from Access to Excel
TWAP strategy
Error: EXECUTE permission was denied on .....
JavaScript Get Variable Field Value
Exchange 2010 Stopped working after replacing a motherboard on the server!?
Problems installing the AjaxControlTooKit.dll
Readystate in IE in VBA program