I think I am experiencing a consistent bug on v9.3.0.5051. I have seen this bug on previous versions, also, so it is not only about v9.3.0.5051.
If I create and run a multiple statement query like this: select from A; select from B; select * from C;
then, all 3 output tabs get only the first table name (A) and their data all export to files as SQL Inserts using the first table name only, like this: INSERT INTO "A" (A columns...) VALUES (A values...); INSERT INTO "A" (B columns...) VALUES (B values...); INSERT INTO "A" (C columns...) VALUES (C values...);
What should happen is the 3 tabs each have their proper, corresponding table, and the exports to files look like this: INSERT INTO "A" (A columns...) VALUES (A values...); INSERT INTO "B" (B columns...) VALUES (B values...); INSERT INTO "C" (C columns...) VALUES (C values...);
I am using a MS SQL Server database in this instance. Not sure if same problem exists with MySQL database.