SQL layout on different lines
Posted: Tue Jan 22, 2019 4:35 pm
Hi All
I am currently putting together some SQL statements and am having to lay them out on a single line, e.g.
put "account_create, timestamp_create, timestamp_create_utc, account_mod, timestamp_mod, timestamp_mod_utc, _kp_uuid_username, email_user, date_of_birth, password_hint, password, username" into tFields
is there a way to allow this to be set out on separate lines (which i find easier to read), e.g.
put "
account_create,
timestamp_create,
timestamp_create_utc,
account_mod,
timestamp_mod,
timestamp_mod_utc,
kp_uuid_username,
email_user, date_of_birth,
password_hint,
password,
username"
into tFields
Many Thanks
I am currently putting together some SQL statements and am having to lay them out on a single line, e.g.
put "account_create, timestamp_create, timestamp_create_utc, account_mod, timestamp_mod, timestamp_mod_utc, _kp_uuid_username, email_user, date_of_birth, password_hint, password, username" into tFields
is there a way to allow this to be set out on separate lines (which i find easier to read), e.g.
put "
account_create,
timestamp_create,
timestamp_create_utc,
account_mod,
timestamp_mod,
timestamp_mod_utc,
kp_uuid_username,
email_user, date_of_birth,
password_hint,
password,
username"
into tFields
Many Thanks