Quick Question

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Quick Question
Дата
Msg-id GNELIHDDFBOCMGBFGEFOKECCCDAA.chriskl@familyhealth.com.au
обсуждение исходный текст
Список pgsql-sql
How do you get this to work?

I'm creating a view of a table, but I'm trying to do something like
this:


create table t ( id integer not null, amount numeric(7,2)
);

create view v as  select id as v_id,   'paid amount: ' || amount as v_comment from t
;

You get this:



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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Indexes with LIKE
Следующее
От: "Christopher Kings-Lynne"
Дата:
Сообщение: Sorry..