Show databases, show tables, and describe table operations in postgresql, and describetable

Source: Internet
Author: User

Show databases, show tables, and describe table operations in postgresql, and describetable

1. It is equivalent to the show databases of mysql;
Select datname from pg_database;


2. It is equivalent to the show tables of mysql;
SELECT table_name FROM information_schema.tables WHERE table_schema = 'public ';
Public is the name of the default schema.


3. Similar to mysql's describe table_name;
SELECT column_name FROM information_schema.columns WHERE table_name = 'table _ name ';
'Table _ name' is the name of the table to be queried.


What are the SQL statements used to display all databases? I know that mysql can use show databases; to display the show tables Table;

Select * from sysdatabases
Or execute the system stored procedure
Sp_helpdb

Comparison between PostgreSQL and Mysql

Mysql: show databases
Pgsql: \ l or \ l + (more information is displayed)

Mysql: use xx
Pgsql: \ c xx

Mysql: show tables
Pgsql: \ dt

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.