How to store MySQL query results in another Table?

Posted by Taz on Stack Overflow See other posts from Stack Overflow or by Taz
Published on 2010-04-23T12:23:08Z Indexed on 2010/04/23 13:13 UTC
Read the original article Hit count: 207

Filed under:
|
|
|

How to store results from following query into another table. Considering there is an appropriate table already created.

SELECT labels.label,shortabstracts.ShortAbstract,images.LinkToImage,types.Type
FROM ner.images,ner.labels,ner.shortabstracts,ner.types
WHERE
  labels.Resource=images.Resource
  AND labels.Resource=shortabstracts.Resource
  AND labels.Resource=types.Resource;

© Stack Overflow or respective owner

Related posts about sql

Related posts about mysql