How to create script with Insert statement for the records selected in MySql ??
Posted
by karthik
on Stack Overflow
See other posts from Stack Overflow
or by karthik
Published on 2010-05-04T06:19:52Z
Indexed on
2010/05/04
6:28 UTC
Read the original article
Hit count: 287
Hello,
I need to create a script file with the Insert statements for the records I select in the mysql table.
For Instance, when i do Select * from emp where empid = 5
, and say i get 10 records as result.
Now I should create a script file with the insert statements of that 10 records to emp table.
I am using C# as code behind...
How?
© Stack Overflow or respective owner