Search
 
SCRIPT & CODE EXAMPLE
 

SQL

show tables postgresql

SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
Comment

show all tables postgres

dt
# show list of tables in postgres
Comment

show table postgres command

PostgreSQL show tables command
	
dt
Comment

list all tables in postgres

c database_name

dt
Comment

postgresql show tables

c database_name -> to select the database
dt -> to show the tables in the current database
Comment

show table details postgresql

d table
Comment

postgresql show tables

SELECT *
FROM pg_catalog.pg_tables
WHERE schemaname != 'pg_catalog' AND 
    schemaname != 'information_schema';
Code language: SQL (Structured Query Language) (sql)
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle ora-00054 find 
Sql :: UPDATE if else mysql 
Sql :: date 3 months from today sql 
Sql :: query concatenate 
Sql :: select tables from mysql database 
Sql :: sql if null then 0 
Sql :: mysql persistence.xml 
Sql :: oracle show execution plan 
Sql :: t sql check active deadlock 
Sql :: t sql check column exists 
Sql :: if not exists insert sql 
Sql :: mysql create table like 
Sql :: mysql alter decimal precision 
Sql :: How to Add a Default Value to a Column in MS SQL Server 
Sql :: join to find results not in another table 
Sql :: sql create table if not exists 
Sql :: random record using order by rand() mysql 
Sql :: brew start postgres manual 
Sql :: sql order by case 
Sql :: linebreak sql 
Sql :: mssql find deadlocks 
Sql :: sql delete caracter list 
Sql :: postgresql change default value 
Sql :: order by oracle 
Sql :: rename constraint postgresql 
Sql :: mysql set value as null 
Sql :: how to get nearest location in mysql with latitude and longitude 
Sql :: permission denied postgres copy csv command line 
Sql :: backup a table in sql 
Sql :: creating a table in sql 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =