Answers for "show detail data in columns table mysql"

SQL
1

mysql show column data types

SELECT DATA_TYPE from INFORMATION_SCHEMA.COLUMNS where
table_schema = ’yourDatabaseName’ and table_name = ’yourTableName’.
Posted by: Guest on September-29-2020
1

mysql show table column full description

/**table's full description*/
SHOW FULL COLUMNS FROM tablename;
Posted by: Guest on October-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language