Hi @nicholasd, thanks for your feedback. Which DB are you working with and could you please one example
Thanks
Guido
@Guido
I am working with Snowflake in Dbeaver. A simple example is below:
--------------------
-- CURRENT FORMAT --
--------------------
SELECT
-- Number of Values line 1 = 2
-- Number of Values line 2 = 2
CONCAT( 'String1', ', '
, 'STRING2', ', '
, 'STRING3', ', '
, 'STRING4'
)
----------------------
-- PREFERRED FORMAT --
----------------------
-- Number of Values line 1 = 0
-- Number of Values line 2 = 2
SELECT
CONCAT(
'String1', ', '
, 'STRING2', ', '
, 'STRING3', ', '
, 'STRING4'
)
Hi @nicholasd,
it took some time but now your idea is available for N++ Plugin and Stand-Alone App
Regards
Guido