vscode-postgres
vscode-postgres copied to clipboard
Execute current statement without highlighting.
Usually when I am working, I write a lot of temporary queries in the same file. This means that it's usually more useful for me to run the query under the cursor instead of running the whole file.
select * from books;
select * from authors;
select * from comme|nts;
For example, if my cursor is where the |
is in the file above, and I use the new command Run Current Statement
, then I would like for only the 3rd statement (select * from comments
) to be run.