You can access tables immediately from the Database tool window, without executing queries explicitly.
- In the Database tool window, expand the desired data source node.
- Select the desired table and press Ctrl+Q or Alt+Button2 Click.
PyCharm opens a quick documentation look-up window, which displays the following information:
- The
CREATE TABLE
query through which the table has been created. - Results of executing the
SELECT * FROM table_name
query (the first 10 rows of the table).
- The