Microsoft
Software
Hardware
Network
Question : how to match corresponding records from two tables
I have INTAKE table with following data.
IntakeID Dateintake AnimalID
1 2009-02-05 001
2 2009-06-19 002
3 2009-07-06 003
4 2009-07-12 004
5 2009-07-15 005
6 2009-08-04 003
7 2009-08-04 004
8 2009-08-14 003
9 2009-12-12 004
I have LICENSE table which will show the license dates purched for the corresponding AnimalID
LicenseID AnimalID DatePurchased
2009-01 004 2009-08-09
2009-02 003 2009-08-12
2009-03 004 2009-12-16
I need to show the results as follows:
AnimalID LicenseID DatePurchesed
001 - -
002 - -
003 2009-02 2009-08-12
004 2009-01 2009-08-09
004 2009-03 2009-12-16
Can some body please help me how to write T-sql script for the above structure.
Thanks
Answer : how to match corresponding records from two tables
SELECT A.AnimalID , LicenseID ,DatePurchesed
FROM (SELECT DISTINCT AnimalID FROM INTAKE ) a
LEFT JOIN LICENSE l
on l.animalId = a.animalid
Random Solutions
c#, asp.net
Exchange 2010 After install when initialising it looks for the DC not the member server
SQL Server file proportions
Accessing Program files in Vista?
Can a property be added to each property in a collection class
TRANSACTION FAILED in Outlook 2007 email
How to get the Drop down items of a ToolStripDropDownButton to remain open.
Make Table Query but save it in a New Database
Access List Box with Multiple Columns
ideal RAM for SQL server