I have a statement in my Java code like so
String sql = "SELECT COL1, COL2, COL3, " +
" COL4, COL5, COL6, COL7 " +
" FROM TABLE T";
Is there an easy way to convert/format this as a SQL query (like below) in Datagrip. Similar to what SQLWorkbench does with a "Clean Java Code" by pressing Alt+L?
SELECT COL1, COL2, COL3,
COL4, COL5, COL6, COL7
FROM TABLE T
Alt+EnterCopy string concatenation text to clipboard

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With