|
Home > Archive > PostgreSQL SQL > February 2006 > Tough Problem -- Record Checkouts
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Tough Problem -- Record Checkouts
|
|
| Alfred 2006-02-13, 1:24 pm |
| Imagine a library of books. Each book is a record. The library is the
table. A user may check out a book and the shelf space it once occupied
will store the minute that the user checked the book out. Every 5
minutes, a magical librarian walks through the library and when a book
has been checked out longer than 15 minutes, she has the power to zap
it back out of the user's hands and put it back on the shelf for
someone else. How do you efficiently achieve this in a WHERE clause in
SQL?
For instance, here's a table of several minute columns. CO, in this
case, is the checked out minute. N, in this case, is the current
minute. This translates to, "If the CO = x, and N is within this range,
then clear the CO column."
CO | N
------+-----------------------
0 | 15-59
1 | 0, 16-59
2 | 0-1, 17-59
15 | 0-14, 30-59
16 | 0-15, 31-59
30 | 0-29, 45-59
31 | 0-30, 46-59
45 | 0-44
46 | 1-45
59 | 14-58
This becomes some kind of UPDATE statement with a complex WHERE clause.
| |
| Greg Stark 2006-02-18, 3:23 am |
|
"Alfred" <99m@myway.com> writes:
> CO | N
> ------+-----------------------
> 0 | 15-59
> 1 | 0, 16-59
> 2 | 0-1, 17-59
> 15 | 0-14, 30-59
> 16 | 0-15, 31-59
> 30 | 0-29, 45-59
> 31 | 0-30, 46-59
> 45 | 0-44
> 46 | 1-45
> 59 | 14-58
>
> This becomes some kind of UPDATE statement with a complex WHERE clause.
That's usually a sign you're storing the data in the wrong form. Why are you
storing just the minutes and not the absolute timestamp of the checkout?
In any case the where clause isn't all that complex. I think you've confused
yourself by drawing the inverse table of what you need. You need the range of
CO to expire for a given N, not the range of N in which you should expire a
given CO.
WHERE co BETWEEN 0 AND n-15 OR co BETWEEN n+1 AND n+45
--
greg
---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?
http://archives.postgresql.org
|
|
|
|
|