I am sure this topic was already raised here.
It is pretty straightforward feature to add ability to group inserts when using "Export grid rows".
Now what you get is:
INSERT INTO table_name VALUES ('a', 'b', 123);
INSERT INTO table_name VALUES ('a', 'b', 123);
INSERT INTO table_name VALUES ('a', 'b', 123);
INSERT INTO table_name VALUES ('a', 'b', 123);
INSERT INTO table_name VALUES ('a', 'b', 123);
And resulted file is far too big.
Why there is no feature to group it and get much smaller file like this?
INSERT INTO table_name VALUES ('a', 'b', 123), ('a', 'b', 123), ('a', 'b', 123), ('a', 'b', 123), ('a', 'b', 123);