“MySQL Show Table Fields” Respostas de código

MySQL Obtenha campos de tabela

SELECT COLUMN_NAME
  FROM INFORMATION_SCHEMA.COLUMNS
  WHERE TABLE_SCHEMA = 'my_database' AND TABLE_NAME = 'my_table';
Shiny Sheep

MySQL Show Table Column Descrição completa

/**table's full description*/
SHOW FULL COLUMNS FROM tablename;
Dev Arman

Obtenha as colunas da tabela MySQL Tipo de dados MySQL

SHOW COLUMNS FROM mydb.mytable;
r00ster

MySQL Show Table Structure

DESCRIBE table_name; # To show table structure...
Duco Defiant Dogfish

MySQL Show Table Fields

DESCRIBE my_table;
chfle

Respostas semelhantes a “MySQL Show Table Fields”

Perguntas semelhantes a “MySQL Show Table Fields”

Mais respostas relacionadas para “MySQL Show Table Fields” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código