Re: multiple tables with same fields

2001-10-18 Thread Jessica Tishmack
On Thu, 18 Oct 2001, Jessica Tishmack wrote: > > Jessica Tishmack wrote: > > Basically, I want to merge two tables together, then do a select on the > > resulting table.  But I want to do this without having to actually create > > a new merged table >

Re: multiple tables with same fields

2001-10-18 Thread Jessica Tishmack
> Jessica Tishmack wrote: > Basically, I want to merge two tables together, then do a select on the > resulting table.  But I want to do this without having to actually create > a new merged table > > > Perhaps you want a MERGE table? > http://www.mysq

Re: multiple tables with same fields

2001-10-18 Thread Jessica Tishmack
> table pets1 > name foodowner > fluffypurina kim > fido kibbles lisa > > > table pets2 > name foodowner > snowy meowmix cheryl > whiskers 9lives lisa > > > Then I want to select all r

multiple tables with same fields

2001-10-18 Thread Jessica Tishmack
Is there a way to select records from multiple tables that have the same fields, without doing a join? Basically, I want to merge two tables together, then do a select on the resulting table. But I want to do this without having to actually create a new merged table. Example: table pets1 nam