Re: insert field from another table

2004-03-24 Thread Johan Hook
Hi, you could try something like: INSERT INTO articles_multi(article,author,text_ru,text_en ) SELECT e.article,e.authoer,r.text,e.text FROM articles_en e, articles_ru r WHERE e.article = r.article AND e.author = r.article /Johan nullevent wrote: Hello mysql, I have two tables - articles_

Re: insert field from another table

2004-03-24 Thread Egor Egorov
nullevent <[EMAIL PROTECTED]> wrote: > > I have two tables - articles_en and articles_ru. > Its fields is 'article', 'author', 'text'. > The difference is - field 'text' in articles_en has english > text of article and field 'text' in articles_ru has russian text of > article. Fields 'ar