“Afficher les tables SQL” Réponses codées

Afficher les tables SQL Server

USE YOUR_DATABASE_NAME
SELECT *
FROM INFORMATION_SCHEMA.TABLES
Gold Leaf

Obtenez la liste de toutes les tables dans SQL Server

SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'
Successful Stork

Tables de spectacle MariaDB

SHOW TABLES FROM database
Valley

Afficher les tables SQL

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

Tables de spectacle SQL

Showing all table: 
show tables;

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

Informations sur la table SQL Show

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

Réponses similaires à “Afficher les tables SQL”

Questions similaires à “Afficher les tables SQL”

Plus de réponses similaires à “Afficher les tables SQL” dans Sql

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code