{"id":3595,"date":"2023-04-12T15:39:33","date_gmt":"2023-04-12T15:39:33","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/"},"modified":"2026-01-15T18:09:34","modified_gmt":"2026-01-15T18:09:34","slug":"exploring-postgresql-with-pgadmin","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/","title":{"rendered":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases?"},"content":{"rendered":"<p><strong>PostgreSQL<\/strong> is a powerful, <a href=\"https:\/\/opensource.com\/resources\/what-open-source\">open-source<\/a> object-relational database system with 30+ years of active development that has earned it a formidable reputation for reliability, feature robustness, and performance. In this post I want to show how you can get started quickly with PostgreSQL by creating a sample database and running some simple queries against it using pgAdmin.<\/p>\n<p><strong>PostgreSQL Sample Database<\/strong><\/p>\n<p>Like many database offerings, PostgreSQL provides a sample database named \u201cdvdrental\u201d\u00a0 which can be downloaded for free <a href=\"https:\/\/www.postgresqltutorial.com\/postgresql-sample-database\/\">here<\/a>. Once you have downloaded the file, you\u2019ll need to unpack it into its .tar format:<\/p>\n<p><strong>PostgreSQL<em> Administration<\/em><\/strong><\/p>\n<p><em>Since <\/em><a href=\"https:\/\/www.pgadmin.org\/\"><strong>pgAdmin<\/strong>\u00a0<\/a>is one of the most popular and feature rich open-source administration and development platforms for PostgreSQL, I\u2019ll use it to create and load the\u00a0PostgreSQL sample database\u00a0into the PostgreSQL database server (and then run some queries). \u00a0Assuming you have <a href=\"https:\/\/www.pgadmin.org\/download\/\">pgAdmin<\/a> installed and have logged in, you can right-click on <strong>Databases<\/strong> and then select <strong>Create<\/strong> and <strong>Database\u2026<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2058 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST2-min.jpg\" alt=\"\" width=\"900\" height=\"253\" \/><\/p>\n<p>If this is your first time using pgAdmin you may need to configure your binary paths. Binary paths specify the path\u00a0to the folder that contains the utility programs (pg_dump, pg_dumpall, pg_restore and psql) for monitored databases (it should be something like this:\u00a0C:Program FilesPostgreSQL9.6bin). pg_restore\u00a0 is\u00a0a utility for restoring a PostgreSQL database from an archive created by pg_dump and is required to setup the sample database. To review or edit the binary paths information you can select <strong>File<\/strong> and then <strong>Preferences<\/strong> from the pgAdmin main menu. Once you\u2019ve set your binary paths correctly, the next step is to provide the database <em>name<\/em> (\u201cdvdrental\u201d), its <em>owner<\/em> and a <em>comment<\/em>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2059 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST3-min.jpg\" alt=\"\" width=\"900\" height=\"464\" \/><\/p>\n<p>When you click <strong>Save<\/strong> on the <strong>Create Database<\/strong> dialog, you should see the new database name referenced in the pgAdmin Object Browser Panel:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2060 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST4-min.jpg\" alt=\"\" width=\"475\" height=\"254\" \/><\/p>\n<p>The next step is to restore the new database from the downloaded database file by right-clicking on the\u00a0(<strong>dvdrental)\u00a0<\/strong>database and then choosing\u00a0<strong>Restore\u2026<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2061 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST5-min.jpg\" alt=\"\" width=\"398\" height=\"719\" \/><\/p>\n<p>Now on the <strong>Restore dialog<\/strong> select \u201c<em>customer or tar<\/em>\u201d for the <strong>Format<\/strong> and enter the path to the sample database file (for example, mine is here:\u00a0c:PostgreSQLdvdrentaldvdrental.tar). You can enter \u201cpostgres\u201d as the <strong>Role.<\/strong> PostgreSQL &#8211; similar to most applications &#8211;\u00a0manages database access permissions using\u00a0the concept of \u201croles\u201d and the default role (unless altered) is the\u00a0<strong>postgres <\/strong>role.\u00a0 Once you are ready, click the\u00a0<strong>Restore<\/strong>\u00a0button:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2062 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST6-min.jpg\" alt=\"\" width=\"900\" height=\"391\" \/><\/p>\n<p>After clicking on <strong>Restore<\/strong>, the database restoration process will run and will show the following dialog once it completes:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2063 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST7-min.jpg\" alt=\"\" width=\"629\" height=\"285\" \/><\/p>\n<p>When the process completes (and you close the message dialog) you can open the\u00a0dvdrental\u00a0database from Object Browser Panel. Notice that the database Tables are listed under Schemaspublic:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2048 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST8-min.jpg\" alt=\"\" width=\"900\" height=\"687\" \/><\/p>\n<p>A <em>neat feature<\/em> of pgAdmin is when you click on a table name (for example the \u201cactor\u201d table) pgAdmin automatically generates the table ddl for the table:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2049 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST9-min.jpg\" alt=\"\" width=\"900\" height=\"687\" \/><\/p>\n<p>One of the most common database tasks is querying data from tables by using the\u00a0SELECT\u00a0statement. In addition to automatically generating table SQL, pgAdmin can also generate a basic select statement. For example, if you right-click on a table name, you can select <strong>Scripts<\/strong>, then <strong>SELECT script<\/strong> and pgAdmin will generate the full (listing all of the column names) table select statement. Pushing the \u201cPlay\u201d button runs the query:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2050 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST10-min.jpg\" alt=\"\" width=\"900\" height=\"685\" \/><\/p>\n<p><strong>Another Exercise<\/strong><\/p>\n<p>Rather than stopping with a simple select query, I want to do a little more. In an older post I wrote about using <a href=\"https:\/\/quebit.com\/askquebit\/IBM\/using-the-sql-server-offset-fetch-feature-in-ibm-planning-analytics\/\">the OFFSET-FETCH filter SQL combination<\/a>. \u00a0An interesting \u201ctwist\u201d on FETCH is the <strong>WITH TIES<\/strong> clause. WITH TIES\u00a0allows you to return <em>more<\/em> rows with values that match the last row in a limited result set.<\/p>\n<p>Let\u2019s look at an example.<\/p>\n<p><strong>WITH TIES<\/strong><\/p>\n<p>Since we have plenty of sample data to work with in our PostgreSQL server, we can again use <a href=\"https:\/\/www.pgadmin.org\/docs\/pgadmin4\/latest\/query_tool.html\">the pgAdmin query editor<\/a> to run the following query on the city table:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2051 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST11-min.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/p>\n<p>Notice that within the first 5 records returned from the table there are multiple records with the country_id of 2.<\/p>\n<p>Before moving on, its worth pointing out that the <a href=\"https:\/\/www.pgadmin.org\/docs\/pgadmin4\/latest\/query_tool.html#toolbar\">pgAdmin Query Tool<\/a> is a great, feature-rich \u201cenvironment\u201d \u201cbuilt-in\u201d to pgAdmin and allows you to execute SQL commands, review and even edit the generated result set. In this post I barely touched the surface on what you can do with the tool (so expect more posts soon!).<\/p>\n<p>Now back to the example, if you change the number of rows to FETCH to <em>3<\/em>, you will get the following result:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2052 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST12-min.jpg\" alt=\"\" width=\"814\" height=\"294\" \/><\/p>\n<p>But if you add the <strong>WITH TIES<\/strong> clause, the query will look like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2053 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST13-min.jpg\" alt=\"\" width=\"900\" height=\"137\" \/><\/p>\n<p>Running <em>this<\/em> version of the query we will see a different result &#8211; in that it \u201c<em>includes the ties<\/em>\u201d (we actually get a 4<sup>th<\/sup> record):<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2054 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST14-min.jpg\" alt=\"\" width=\"811\" height=\"324\" \/><\/p>\n<p>In this example (using the city table) the WITH TIES might not make a lot of sense, however, suppose you wanted to reward your top three customers based upon the highest payment amount? If you run a similar query, this time on the payment table you would see the following result:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2055 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST15-min.jpg\" alt=\"\" width=\"900\" height=\"457\" \/><\/p>\n<p>But if you again add the WITH TIES to this query, we\u2019ll see a <em>better<\/em> result:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2056 alignnone\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST16-min.jpg\" alt=\"\" width=\"857\" height=\"467\" \/><\/p>\n<p>Now customer 343 \u201cmakes the cut\u201d and will receive a reward!<\/p>\n<p><strong>Wrap up<\/strong><\/p>\n<p>pgAdmin supports all PostgreSQL features, from writing SQL queries to developing databases and is designed to query an active database (in real-time), allowing you to stay current with modifications and implementations. It\u2019s a tool that is well worth spending the time to become familiar with and I\u2019m sure it will be in some future posts!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PostgreSQL is a powerful, open-source object-relational database system with 30+ years of active development that has earned it a formidable reputation for reliability, feature robustness, and performance. In this post I want to show how you can get started quickly with PostgreSQL by creating a sample database and running some simple queries against it using&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[27],"tags":[32],"class_list":["post-3595","post","type-post","status-publish","format-standard","hentry","category-quebit-value","tag-sql"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"PostgreSQL is a powerful, open-source object-relational database system with 30+ years of active development that has earned it a formidable reputation for reliability, feature robustness, and performance. In this post I want to show how you can get started quickly with PostgreSQL by creating a sample database and running some simple queries against it using&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:39:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-15T18:09:34+00:00\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases?\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"dateModified\":\"2026-01-15T18:09:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/\"},\"wordCount\":916,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/POST2-min.jpg\",\"keywords\":[\"SQL\"],\"articleSection\":[\"QueBIT Value\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/\",\"name\":\"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/POST2-min.jpg\",\"datePublished\":\"2023-04-12T15:39:33+00:00\",\"dateModified\":\"2026-01-15T18:09:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/POST2-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/POST2-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/exploring-postgresql-with-pgadmin\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT","og_description":"PostgreSQL is a powerful, open-source object-relational database system with 30+ years of active development that has earned it a formidable reputation for reliability, feature robustness, and performance. In this post I want to show how you can get started quickly with PostgreSQL by creating a sample database and running some simple queries against it using&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:39:33+00:00","article_modified_time":"2026-01-15T18:09:34+00:00","author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases?","datePublished":"2023-04-12T15:39:33+00:00","dateModified":"2026-01-15T18:09:34+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/"},"wordCount":916,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST2-min.jpg","keywords":["SQL"],"articleSection":["QueBIT Value"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/","url":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/","name":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST2-min.jpg","datePublished":"2023-04-12T15:39:33+00:00","dateModified":"2026-01-15T18:09:34+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST2-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2022\/02\/POST2-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/exploring-postgresql-with-pgadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Use pgAdmin to Explore and Manage PostgreSQL Databases?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3595","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3595"}],"version-history":[{"count":1,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3595\/revisions"}],"predecessor-version":[{"id":4912,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3595\/revisions\/4912"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3595"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3595"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3595"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}