Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display query result table with grids in Oracle Sql Developer?

I have a problem with table grids in Oracle SQL Developer. It has not been set with grids by default. How to display sql tables with grids? Now I have attributes separated by spaces and attributes are separated from value fields by "----".

Thanks in advance!

like image 388
b36 Avatar asked Oct 28 '25 14:10

b36


2 Answers

Perhaps you are using run script(F5) That's why you are seeing the result like that. Select(highlight) all or only the code blocks or statements you want to execute and then execute it with run statement (Ctrl+Enter)

like image 73
nil Avatar answered Oct 30 '25 14:10

nil


Your question has two different paths:

  1. executing queries, seeing the results
  2. displaying (sql) tables

Null's answer takes care of #1.

For #2, you can open the actual table being used in your query quite easily.

enter image description here

Or you can just directly browse the list of tables and views for your schema or under 'Other Users' in the tree and click on them to open them. Or double-click if you have disabled 'open object on single click' in preferences.

like image 30
thatjeffsmith Avatar answered Oct 30 '25 12:10

thatjeffsmith