tora
tora copied to clipboard
executing a partial selected command on a line executes complete line
select * from dual where 1=2
when you select in the above line the text "select * from dual" and execute it, it will give no results so actually the complete line is selected for execution
while select * from dual where 1=2
select only the first line (select * from dual) it will give a result