Re: [SQL] Duplicate Fields + Views Questions

2006-11-03 Thread Dylan Lorimer
Thanks,Got it working with a UNION.Cheers,dylanOn 11/3/06, Richard Broersma Jr <[EMAIL PROTECTED] > wrote:> I've got 2 views - each with identical column names. I want to create an > aggregate view of both tables as a new view. But when I try to do this I> understandably get errors on duplicate fie

Re: [SQL] Duplicate Fields + Views Questions

2006-11-03 Thread Richard Broersma Jr
> I've got 2 views - each with identical column names. I want to create an > aggregate view of both tables as a new view. But when I try to do this I > understandably get errors on duplicate fields. > > As an example: > > CREATE VIEW gnis_view AS SELECT * FROM gnis_international_view, > gnis_usa_

[SQL] Duplicate Fields + Views Questions

2006-11-03 Thread Dylan Lorimer
Hi,I've got 2 views - each with identical column names. I want to create an aggregate view of both tables as a new view. But when I try to do this I understandably get errors on duplicate fields.As an example: CREATE VIEW gnis_view AS SELECT * FROM gnis_international_view, gnis_usa_view;ERROR:  col