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
what is byref in csharp? help with my function
Exchange server 2003 - can't telnet to port 25 or receive inbound
scale based on date values
Need to fix compatability issue with windows 7 64 bit for vfp version 7 (and 8 and 9)
@Xml.nodes - Query
Design a Query to subtract a record value from previous record value
Form update in Access 2007
VBA querytables.refresh not working
Reading dBase files with attached MDX via ADO.NET
Cannot Install SP4 on Windows 2000 Server