Re: VIEW / ORDER BY + UNION

Поиск
Список
Период
Сортировка
От CoL
Тема Re: VIEW / ORDER BY + UNION
Дата
Msg-id cv48la$m4p$1@news.hub.org
обсуждение исходный текст
Список pgsql-sql
hi,

WeiShang wrote, On 2/17/2005 16:46:
> 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?

nothing says it will. you havet to sort the set of unions.
(select orderno ) union (select orderno ) order by orderno.

Not necessary now (no sense), to use order by in selects inside union.

C.


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Pagination with Output Variables?
Следующее
От: Mirko Zeibig
Дата:
Сообщение: Re: FW: Working with XML.