--
You received this message because you are subscribed to the Google Groups "SportsDataBase" group.
To post to this group, send email to sportsd...@googlegroups.com.
To unsubscribe from this group, send email to sportsdatabas...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sportsdatabase?hl=en.
Facts,
thank for the useful link.
I see that the super bowl winner was given by the SDQL:
R(W@team and playoffs=1) = 1
This is nice and short and says that the team's last playoff game was a win.
Unfortunately, this has the potential of giving false positives:
If a super bowl winner doesn't even make the playoffs the following year then this SDQL will still qualify that team the subsequent year.
Here is a better super bowl winner query:
To see how superbowl winners do in week one the following season use the SDQL:
R(W@team and season and playoffs=1)[team and season-1 and playoffs=1] = 1
To get the super bowl loser I guess you have to move to using `week`:
R(L@team and season and week=22)[team and season-1 and week=22] = 1 and week = 1
Square bracket notation can be intimidating:
It is handy and not hard for more see:
http://sportsdatabase.com/sdb.py/Manual/summative