“SQL Show Table Información” Código de respuesta

Mostrar tablas SQL

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

tablas de show sql

Showing all table: 
show tables;

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

SQL Show Table Información

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

Respuestas similares a “SQL Show Table Información”

Preguntas similares a “SQL Show Table Información”

Más respuestas relacionadas con “SQL Show Table Información” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código