|  | Posted by Erland Sommarskog on 05/27/05 01:18 
(manning_news@hotmail.com) writes:> Here's a sample of the data I have:
 >
 >               SSN: 999999999    (first row)
 >         MonthName: July
 >       IMClinicDay: Monday PM
 >  IMClinicDateLast: 07/01/05
 > IMClinicDateFirst: 09/01/05
 >
 >               SSN: 999999999     (nth row)
 >         MonthName: September
 >       IMClinicDay: Wednesday PM
 >  IMClinicDateLast: 09/01/05
 > IMClinicDateFirst: 10/01/05
 >
 > With a SELECT statement, I want to return all of the first row and only
 > the IMClinicDay (Wednesday PM) of the nth row using IMClinicDateFirst
 > in the first row to get this data.
 
 Since your table definition did not include any information about keys,
 I cannot be sure that this query works:
 
 SELECT a.SSN, a.ResidentProgram, ..., b.IMClinicDay
 FROM   tblResidentRotations a
 LEFT   JOIN b tblResidentRotations
 ON  a.SSN = b.SSN
 AND a.IMClinicDateLast = b.IMClinicDateFirst
 WHERE  a.IMClinicDateFirst >= @yearmonth + '01' AND
 a.IMClincDateFirst < dateadd(MONTH, 1, @yearmonth + '01')
 
 I assume that @yearmonth holds the month you are looking for on the
 form YYYYMM.
 
 
 --
 Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
 
 Books Online for SQL Server SP3 at
 http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp
 [Back to original message] |