Обсуждение: Quick Question

Поиск
Список
Период
Сортировка

Quick Question

От
"Christopher Kings-Lynne"
Дата:
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: