Re: Selecting from two tables

Поиск
Список
Период
Сортировка
Искать
От
mauro.folcarelli@sistinf.it
Тема
Re: Selecting from two tables
Дата
Msg-id
OF5DA66277.51C42621-ONC1256E1C.002A6AD2@sistinf.it
Список
Дерево обсуждения
Re: Selecting from two tables mauro.folcarelli@sistinf.it
>> I have a table called Jobs and another called Applications.
>> I can query all Job rows, but how do I also include the number
>> of Application rows for each Job row in the SELECT statement?

Try this way:

(1) CREATE VIEW viewappl AS
        SELECT jobid
              ,count(*) as numappl
        FROM application
        GROUP BY
               jobid;

(2) SELECT
  job.jobid
 ,job.login
 ,job.jobtitle
 ,job.jobdescrip
 ,job.jobkeywords
 ,job.valid
 ,job.postdate
 ,viewappl.numappl
 FROM job , viewappl
 where job.jobid = viewappl.jobid
 order by
  job.jobid
 ;

I hope it's ok.

Hi, Mauro

В списке pgsql-php по дате отправления
От: mauro.folcarelli@sistinf.it
Дата:
От: scott.marlowe
Дата:
FAQ