I need to achieve:
similar demands in this question: How to export data from SQL Server 2005 to MySQL
change table structure and column names, for example:
Source(sql server):
Table A
id studentName
--------------
1 John
2 Jim
Table B
id teacherName
--------------
1 Kate
2 Mat
Destinations(mysql):
Table C // Table A、B are combined
id name // here the column name changed
-------
1 John
2 Jim
3 Kate
4 Mat