PostgreSQL: Show tables in PostgreSQL

后端 未结 24 2617
醉梦人生
醉梦人生 2020-11-28 16:58

What\'s the equivalent to show tables (from MySQL) in PostgreSQL?

24条回答
  •  暖寄归人
    2020-11-28 17:36

    use only see a tables

    => \dt
    

    if want to see schema tables

    =>\dt+
    

    if you want to see specific schema tables

    =>\dt schema_name.* 
    

提交回复
热议问题