“SQL Mostrar informações da tabela” Respostas de código

Mostrar tabelas SQL

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

SQL Show Tables

Showing all table: 
show tables;

Showing table data:
SELECT
* or column_names
FROM
table_name;
Ankur

SQL Mostrar informações da tabela

SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = table_name;
Troubled Trout

Respostas semelhantes a “SQL Mostrar informações da tabela”

Perguntas semelhantes a “SQL Mostrar informações da tabela”

Mais respostas relacionadas para “SQL Mostrar informações da tabela” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código