Skip to Main Content

SQL Developer for VS Code

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Suggested feature - select rows from table

Doug Sievers2 days ago

Hi,

I have seen other RDBMS front-ends that have a feature where you can right-click on a table, and it will generate a query with all of the columns, ready for you to run it (or just runs it).

For example, you might have another option when you right-click a table, named “Query Rows” below “Open”:

For the SCOTT schema, table EMP, it would open an editor with a script to query all columns:

SELECT EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO
FROM EMP;

It doesn't have to run the query, but the goal is not having to write SELECT *, then type in all the column names desired for my query. Classic SQL Developer had options to expand the asterisk or copy column names to the clipboard, which are also possible solutions with the same goal in mind.

Thank you for your consideration!

Comments
Post Details
Added 2 days ago
1 comment
46 views