A view representing a schedule for all days into the future

From: Adam Mackler <postgresql(at)mackler(dot)org>
To: pgsql-general(at)postgresql(dot)org
Subject: A view representing a schedule for all days into the future
Date: 2013-10-08 10:53:51
Message-ID: 20131008105351.GM26883@mackler.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi:

I recently posted a question on stackoverflow, but I suspect it may
require specific PostgreSQL knowledge, so I'm cross-posting a
reference to it here.

http://stackoverflow.com/questions/19237450/can-sql-view-have-infinite-number-of-rows-repeating-schedule-each-row-a-day

The gist is that I have information representing companies' daily
schedules in some tables, and I want to be able to do a SELECT to get
the business hours for any given day, arbitrarily far into the future
(and past, but I can live with a limit in that direction). I want to
encapsulate any messy SQL in a single location where it can be hidden
from client usage, presumably in a view.

I currently have a user-defined function that returns the results I
want, but the problem is in the invocation: Some host-language client
libraries aren't so graceful with user-defined functions, especially
when they return multiple rows of multiple columns. I would like to
be able to do a simple table-style SELECT query, presumably on a view.
But if I can put any date into the WHERE clause, then that means the
view would represent a table with an infinite number of rows, would it
not?

The posting on SO clarifies the specifics of what I'm trying to. It
seems like there ought to be a way, but I haven't figured it out.

Thanks very much.
--
Adam Mackler

Browse pgsql-general by date

  From Date Subject
Next Message shailesh singh 2013-10-08 10:55:59 Urgent Help Required
Previous Message Albe Laurenz 2013-10-08 09:49:21 Re: Can checkpoint creation be parallel?