i want to get the column data type of mysql table.

Though MYSQLFIELD structure but it was enumerated field types.

then i tried with "mysql_real_query() "

for me the error which i am getting is "query was empty"

pls help to get the column data type

thanks in advance

krishna

link|improve this question

12% accept rate
feedback

4 Answers

The query below returns a list of information about each field, including the MySQL field type. Here is an example:

SHOW FIELDS FROM tablename
/* returns "Field", "Type", "Null", "Key", "Default", "Extras" */

See this manual page.

link|improve this answer
An alternative is EXPLAIN tablename; – hobodave Jul 31 '09 at 23:58
feedback

You can use the information_schema columns table:

SELECT DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS 
  WHERE table_name = 'tbl_name' AND COLUMN_NAME = 'col_name';
link|improve this answer
Don't forget: AND INDEX_SCHEMA = 'database_name' – Inshallah Aug 6 '09 at 18:16
feedback

To get data types of all columns:

describe table_name

or just a single column:

describe table_name column_name
link|improve this answer
feedback

Refer this link

mysql> SHOW COLUMNS FROM mytable FROM mydb;
mysql> SHOW COLUMNS FROM mydb.mytable;

Hope this may help you

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.