Re: What is the benefit of schemas?

Поиск
Список
Период
Сортировка
От Mikael Carneholm
Тема Re: What is the benefit of schemas?
Дата
Msg-id 1044302804007375@lycos-europe.com
обсуждение исходный текст
Ответ на What is the benefit of schemas?  ("Berend Tober" <btober@computer.org>)
Список pgsql-general
Pre-7.3 schemas:

\c appfoo appfoouser
select customerID
from appfootable
where appfootable.barcolumn = 'some value';

\c customers customersuser
select *
from customer
where ID = customerID;

Post-7.3 schemas:

\c companydb companydbuser
select c.*
from customers.customer c, appfoo.appfootable a
where a.barcolumn = 'some value' and a.customerID = c.ID;

'nough said? :)

_____________________________________________________________
Här börjar internet!
Skaffa gratis e-mail och gratis internet på http://www.spray.se

Träffa folk från hela Sverige på ett och samma ställe - http://chat.spray.se/



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

Предыдущее
От: "Nigel J. Andrews"
Дата:
Сообщение: Re: 335 times faster (!)
Следующее
От: Mikael Carneholm
Дата:
Сообщение: Re: 335 times faster (!)