How To Show Tables In PostgreSQL Database Using SQL Shell psql And pgAdmin || PostgreSQL Tutorials

Аватар автора
Прогресс.
#akramsohailproject You Are Hearty Welcomed To My Channel Knowledge 360. Here I post technical videos, mainly related to computer science and programming. I am posting project videos with coding explanations. I make tutorial videos on Technical Topics. Stay Connected, Stay Tuned, Study Smart. - Knowledge 360 (Akram Sohail) Only 3.9% of viewers are subscribing to my channel ?. I request you to please give click on Subscribe button. It really helps me grow ?. Please Like, Comment, and Subscribe to my channel. ❤ Follow me on Social Media -------------------------------------------------- Source Codes - Topics --------- Oracle MySQL PostgreSQL SQL Server PHP C C++ Java JavaScript HTML/CSS jQuery Ajax Bootstrap Angular Linux Ubuntu Windows Description ------------------ How To Show Tables In PostgreSQL Database Using SQL Shell psql And pgAdmin || PostgreSQL Tutorials Syntax ------- SELECT * FROM pg_catalog.pg_tables WHERE schemaname = &name' AND schemaname != &; Query ------- SELECT * FROM pg_catalog.pg_tables WHERE schemaname = 'public' AND schemaname != &; Syntax ------- select * from information_schema.tables where table_schema=&name' and table_type = &TABLE OR VIEW& Query ------- --Will display all tables select * from information_schema.tables where table_schema='public' and table_type = &TABLE& --Will display all views select * from information_schema.tables where table_schema='public' and table_type = & How To Show Tables In...

0/0


0/0

0/0

0/0