| From: | Wim Ceulemans <wim(dot)ceulemans(at)nice(dot)be> |
|---|---|
| To: | pgsql-general(at)postgreSQL(dot)org |
| Subject: | Re: [GENERAL] constant column value in view with union |
| Date: | 2000-01-12 14:43:45 |
| Message-ID: | 387C9321.6497B3C1@nice.be |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Sarah Officer wrote:
>
> I am converting some Oracle stuff to Postgres (or attempting to
> convert it :) ), and I'm having trouble with my views. I have
> figured out the syntax difference between Oracle & Postgres, I
> think, but Postgres doesn't seem to know the type of a constant text
> column. How can I make this work?
>
> The view is something like this:
>
> create view Foo as
> select a, b, c, 'OK' as status
> from table1
> where ...
> union
> select a, b, c, 'BAD' as status
> from table1
> where ...
>
select a, b, c, 'OK'::varchar(3) as status ...
Concerning the union:
1. create separate views with the same structure
2. use a select of the form:
select a, b, c, status from view1 where ... union select a, b, c, status
from view2 where ...
Regards
Wim
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Barnes | 2000-01-12 14:50:40 | RE: [GENERAL] query with LIKE |
| Previous Message | Bruce Momjian | 2000-01-12 14:19:21 | Re: [GENERAL] query with LIKE |