“MySQL Show Tabelle Spalte Kommentare SQL” Code-Antworten

MySQL Show Tabelle Spalte Kommentare SQL

/* mysql query for command line*/
SHOW FULL COLUMNS FROM "table_name";
Dev Arman

MySQL, wie ich die Tabellenkommentare abfragt?

SELECT a.COLUMN_NAME, a.COLUMN_COMMENT
FROM  information_schema.COLUMNS a 
WHERE a.TABLE_NAME = 'YOUR_TABLE_NAME'
loneWolf_sage

Ähnliche Antworten wie “MySQL Show Tabelle Spalte Kommentare SQL”

Fragen ähnlich wie “MySQL Show Tabelle Spalte Kommentare SQL”

Weitere verwandte Antworten zu “MySQL Show Tabelle Spalte Kommentare SQL” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen