SQL queries can be really long and when we join them into a single line we produce a less readable code (that also doesn't pass checks from static analysis tools). Let's preserve newlines and use multiline strings (""" for Python) or concatenation (as last resort).
SQL queries can be really long and when we join them into a single line we produce a less readable code (that also doesn't pass checks from static analysis tools). Let's preserve newlines and use multiline strings (
"""for Python) or concatenation (as last resort).