Is there a way in PyCharm to paste multiline text (SQL) into string literal? E.g.:
SELECT column1
, column2
FROM table1
WHERE column3 IN
(
SELECT TOP(1) column4
FROM table2
INNER JOIN table3
ON table2.column1 = table3.column1
)
Into:
sql = (
"SELECT column1"
" , column2"
"FROM table1"
"..."
)
And ideally tell PyCharm it is text in SQL language to highlight syntax?


