I'm creating a sql definition but run out of visible line space
What character do I use to extend the line to the next line?
e.g.
sql = "surname as text, firstname as text, initials as text
do I use
sql = "surname as text, /
firstname as text, /
initials as text"
or
sql = "surname as text, _
firstname as text, _
initials as text"
i.e. do I use "/" or "_" or what other character?
What character do I use to extend the line to the next line?
e.g.
sql = "surname as text, firstname as text, initials as text
do I use
sql = "surname as text, /
firstname as text, /
initials as text"
or
sql = "surname as text, _
firstname as text, _
initials as text"
i.e. do I use "/" or "_" or what other character?