Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two mysql tables which both have a typeID in common. I am wanting to select everything from these two tables with the same typeID, query below:

SELECT ta.requiredTypeID, ta.typeID, ta.quantity 
  FROM `invtypes` as t, `typeactivitymaterials` as ta 
  WHERE volume > 0 AND t.typeID = ta.typeID;

This gives me the correct results but I am trying to export this query as insert statements. I have tried adding INTO OUTFILE "/path/" but this only exports the data as tab/comma delimited data, is it possible to export this data as insert statements?

Cheers

Eef

share|improve this question

4 Answers

up vote 3 down vote accepted

You can combine INSERT with SELECT to insert records directly from the result of a select statement.

The way you do it would be something like this:

INSERT INTO newtable (requiredTypeID, typeID, quantity)
     SELECT ta.requiredTypeID, ta.typeID, ta.quantity 
         FROM `invtypes` as t, `typeactivitymaterials` as ta 
         WHERE volume > 0 AND t.typeID = ta.typeID;

Here's a link to the relevant MySQL manual page.

Note that this would actually do the insert right away; it wouldn't do quite what you asked (which is to generate the insert statements for use later on).

share|improve this answer
That worked like a treat, excellent, cheers. – RailsSon Sep 24 '10 at 12:25

You might be able to use mysqldump instead. Check out the parameters --tables and --where=.

http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html

share|improve this answer

You can make something like this:

select 
       concat(
         concat(
           concat(
             concat(
               concat(
                 concat('insert into <table> (requiredTypeID, typeID, quantity) values ("'
                        ,ta.requiredTypeID)
               ,'", "')
             ,ta.typeID)
           ,'", "')
         ,ta.quantity)
       ,'")')
FROM 
       `invtypes` as t, `typeactivitymaterials` as ta 
WHERE 
       volume > 0 AND t.typeID = ta.typeID;
INTO OUTFILE 'file_name'  

I know it is ugly but I think it solves your case :)

share|improve this answer
2  
doies it escape values? – Your Common Sense Sep 24 '10 at 12:18
1  
concat can take more than two parameters. – a'r Aug 25 '11 at 15:17

If you have MySQL Workbench it can generate insert statements for you.

In the SQL editor run your query, then from the result set you can click the export button. Then in the "Save as Type" select as "SQL INSERT statements (*.sql)". Click Save, confirm the table you are exporting and click ok.

If you open the file you should see your result set as insert statements with the column names.

I only tested this on a simple select * from table. I haven't tested this with multiple tables. I hope this helps.

EDIT: Seems like workbench is available for Windows, OSX, and Linux (Thanks vcardillo)

share|improve this answer
Super handy, thanks. Didn't even notice the drop down for save as type. Thanks! – vcardillo May 15 at 20:01
1  
Oh also, MySQL Workbench exists also for OSX and Linux. – vcardillo May 15 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.