Re: VIEW / ORDER BY + UNION

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: VIEW / ORDER BY + UNION
Дата
Msg-id 20050223171957.GA15830@wolff.to
обсуждение исходный текст
Ответ на VIEW / ORDER BY + UNION  ("WeiShang" <thanks@verymuch.com>)
Список pgsql-sql
On Thu, Feb 17, 2005 at 23:46:59 +0800, WeiShang <thanks@verymuch.com> wrote:
> Hi, I have created a view like this :
> 
> CREATE VIEW v1 AS (SELECT orderno,weekday,time FROM t1,t2 where
> t1.orderno=t2.orderno);
> 
> if I create a SQL statment:
> 
> (SELECT orderno FROM v1 WHERE weekday='MON' ORDER BY orderno)
> UNION
> (SELECT orderno FROM v1 WHERE weekday='WED' ORDER BY orderno)
> UNION
> (SELECT orderno FROM v1 WHERE weekday='FRI' ORDER BY orderno);
> 
> Will the whole result will be sorted by the field orderno?

If this isn't a made up example, you don't want to do this. You
should use IN or OR to select records corresponding to the days
of interest and then use ORDER BY to select the ordering.


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Row Count
Следующее
От: KÖPFERL Robert
Дата:
Сообщение: Re: VIEW / ORDER BY + UNION