PostgreSQL is a complex database system, with many features and even more actions, so we can't discuss them all; we will just mention three table actions of interest:
- The Maintenance... entry opens a dialog that includes actions such as VACUUM and ANALYZE, which are discussed in various recipes in Chapter 9, Regular Maintenance.
- The Import/Export... entry leads to a dialog where you can export and import data using the COPY command, which includes CSV format, as demonstrated in Chapter 5, Tables and Data.
- With View/Edit Data, you can edit the contents of the table as you would do in a spreadsheet. This is slightly different than the CSV import/export feature because you edit the data directly inside the database without ...