Re: alter table tt union=(t1,t2,t3);

2004-03-23 Thread Victoria Reznichenko
TABLE statement is ignored. So, your ALTER TABLE statement will recreate table tt and copy data. Shane Egor Egorov wrote: Shane Nelson [EMAIL PROTECTED] wrote: Any idea what this would do? alter table tt union=(t1,t2,t3); With this statement you specify that MERGE table tt will union

alter table tt union=(t1,t2,t3);

2004-03-19 Thread Shane Nelson
Any idea what this would do? alter table tt union=(t1,t2,t3); The four tables are all the same and all contain data. I posted the details (schema, contents) of the tables here: http://nopaste.php.cd/10918 I'm running mysql Ver 11.18 Distrib 3.23.58, Shane -- MySQL General Mailing List

Re: alter table tt union=(t1,t2,t3);

2004-03-19 Thread Egor Egorov
Shane Nelson [EMAIL PROTECTED] wrote: Any idea what this would do? alter table tt union=(t1,t2,t3); With this statement you specify that MERGE table tt will union tables t1, t2, t3 and they will used as one: http://www.mysql.com/doc/en/MERGE.html The four tables are all