Can a view represent a schedule for all days into the future?

Поиск
Список
Период
Сортировка
От Adam Mackler
Тема Can a view represent a schedule for all days into the future?
Дата
Msg-id 20131010171648.GR26883@mackler.org
обсуждение исходный текст
Ответы Re: Can a view represent a schedule for all days into the future?  (David Johnston <polobo@yahoo.com>)
Re: Can a view represent a schedule for all days into the future?  (Merlin Moncure <mmoncure@gmail.com>)
Список 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


В списке pgsql-general по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Segmentation fault: pg_upgrade 9.1 to 9.3: pg_dump: row number 0 is out of range 0..-1
Следующее
От: David Johnston
Дата:
Сообщение: Re: Can a view represent a schedule for all days into the future?