<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.0.6619.12">
<TITLE>Can SQL even do this?</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/rtf format -->

<P><B><FONT FACE="Courier New">I've got an &quot;interesting&quot; problem -- easy enough to do with any procedural language, but I'm curious if this can be implemented as an SQL query all in one go...</FONT></B></P>

<P><B><FONT FACE="Courier New">This is for a schedule -- I have in one table a &quot;start date&quot; for a series of events, a table of events with a &quot;week number&quot; for the event to take place, and a third table of &quot;blackout dates&quot;.&nbsp; I'd like a query that returns the date of each event, skipping blackout dates.</FONT></B></P>

<P><B><FONT FACE="Courier New">For example:</FONT></B>
</P>

<P><B><FONT FACE="Courier New">&nbsp;&nbsp; the main table has a &quot;start date&quot; of 11/02/2008 [a Sunday]</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp; The event table has 5 entries, in the form of &quot;week:1; event:Game 1&quot;,&quot;week:2; event:Game 2&quot;, etc. through &quot;Game 5&quot;</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp; The blackout table has an entry for 11/23/2008</FONT></B>
</P>

<P><B><FONT FACE="Courier New">The results should be</FONT></B>
</P>

<P><B><FONT FACE="Courier New">&nbsp;&nbsp;&nbsp; 11/02/2008&nbsp; Game 1</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp;&nbsp; 11/09/2008&nbsp; Game 2</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp;&nbsp; 11/16/2008&nbsp; Game 3</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp; [11/23/2008&nbsp; Blackout]&nbsp;&nbsp; &lt;--- optional</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp;&nbsp; 11/30/2008&nbsp; Game 4</FONT></B>

<BR><B><FONT FACE="Courier New">&nbsp;&nbsp;&nbsp; 12/07/2008&nbsp; Game 5</FONT></B>
</P>

<P><B><FONT FACE="Courier New">I don't often do calculations within the select (usually preferring to use the language performing the database access rather than the query to do the work) so I'm not even sure how to convert &quot;11/02/2008 &#43; 3&quot; to get &quot;11/16/2008&quot; (for the third entry, that is) [and/or, would it be better for the first event to occur on &quot;week 0&quot; instead of &quot;week 1&quot;?]&nbsp; I think the real killer here is that when a calculated date appears in the &quot;blackout&quot; table, that date and all subsequent dates need to increase their offset by an additional week...</FONT></B></P>
<BR>
<BR>

</BODY>
</HTML>