If I run an Edit command in the Toad editor that is written in multiple lines, the Editor only seems to read the first line only. See the example below.
Scenario A:
edit table_name where col1=123 or
col1=333
Causes Error: ORA-00921: unexpected end of SQL command
Scenario B:
edit table_name
where col1=123 or col1=333
Will only run the first line of "Edit table_name" and ignores the WHERE criteria
Scenario C:
edit table_name where col1=123 or col1=333
Will run the entire statement as excpected.