SQLDeveloper: execute current line without highlighting

后端 未结 4 672
春和景丽
春和景丽 2021-02-13 20:42

In Toad one can easily execute current line without highlighting it. Let say, you have a worksheet like this:

select * from item -- cursor here


select * from p         


        
4条回答
  •  长情又很酷
    2021-02-13 20:50

    For those who also wonder about the same thing, here is what you gotta do. End each statement with ; and it works.

    select * from item
    ;
    
    select * from product;
    

提交回复
热议问题