Using a User-Def function in a query

Поиск
Список
Период
Сортировка
От Ralph Smith
Тема Using a User-Def function in a query
Дата
Msg-id BC99B94A-40B2-463D-89AD-29847263D28E@washington.edu
обсуждение исходный текст
Ответы Re: Using a User-Def function in a query  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
I've written several user-defined functions (UDFs) for converting dates to unix time, every which way.
They work find, ala

    # select dtu_dmony('22 Sep 2008');
     dtu_dmony  
    ------------
     1222066800
    (1 row)
Returns an integer.

---
Here's a typical query I often run (why I wrote the functions
    # select count(distinct username) from stats where eventtime > 1222066800 ;
     count 
    -------
      1460
    (1 row)

---
but when I try to use the function in a query
    # select count(distinct username) from stats where eventtime > dtu_dmony('22 Sep 2008') ;
it never comes back...

---
Is it the table-like formatting that's killing me?
How do I get around this?

Thanks!

Ralph Smith
smithrn at here washington.edu
=====================



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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: pg_dump | pg_sql: insert commands and foreign key constraints
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pg_dump | pg_sql: insert commands and foreign key constraints