Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I check if mysql table field even exists ?

The column name is 'price' and I need to see if it exists.

Haven't understood really how the 'EXISTS' works...

Any examples or ideas ?

Thanks

share|improve this question
You mean column named "price"? – CBFraser Nov 27 '09 at 18:56
you are right... column – Anonymous12345 Nov 27 '09 at 18:58

6 Answers

up vote 13 down vote accepted

In PHP:

$fields = mysql_list_fields('database_name', 'table_name');
$columns = mysql_num_fields($fields);
for ($i = 0; $i < $columns; $i++) {$field_array[] = mysql_field_name($fields, $i);}

if (!in_array('price', $field_array))
{
$result = mysql_query('ALTER TABLE table_name ADD price VARCHAR(10)');
}

This should also help you:

IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = ‘TEST’ AND COLUMN_NAME = ‘TEST_DATE’)
BEGIN
  ALTER TABLE TEST ADD TEST_DATE DATETIME
END

Or you can do:

Show columns from table like 'string';

There has been a similar question posed on SO here before.

share|improve this answer
does SELECT * FROM INFORMATION_SCHEMA.COLUMNS works in MySQL? – TheVillageIdiot Jul 10 '11 at 6:51
@TheVillageIdiot: dev.mysql.com/doc/refman/5.0/en/columns-table.html – 0A0D Jul 10 '11 at 11:45
thanks dear! hurra, learned a new thing – TheVillageIdiot Jul 10 '11 at 17:25
1  
@Benubird: No, what are you talking about? I'm not going to change my answer from 3 years ago. – 0A0D Dec 21 '12 at 17:58

Try:

IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'TEST' AND COLUMN_NAME = 'Price')
BEGIN
    -- do something, e.g.
    -- ALTER TABLE TEST ADD PRICE DECIMAL
END
share|improve this answer

Well, one way is to do:

select price from your_table limit 1

If you get an error:

#1054 - Unknown column 'price' in 'field list'

then it does not exists.

share|improve this answer
what kind of error do you mean? How can I check if it's an error then ? – Anonymous12345 Nov 27 '09 at 19:01
If you get error #1054 – Milan Babuškov Nov 27 '09 at 19:02
Yes, but how can I check for that in PHP? If (error) { etc } ??? – Anonymous12345 Nov 27 '09 at 19:03
See my answer above for PHP example – 0A0D Nov 27 '09 at 19:04

Another way of doing it in PHP:

$chkcol = mysql_query("SELECT * FROM `table_name` LIMIT 1"); 
$mycol = mysql_fetch_array($chkcol); 
if(isset($mycol['price'])) 
  echo "Column price exists! Do something...";
share|improve this answer
Welcome to stackoverflow. This question is extremely old. Best not to resurrect old threads unless the response adds something significant over previous answers. – Leigh Apr 7 '12 at 4:06
1  
No, answers to old questions help those of looking. Keep adding better answers to old questions I say. If we are not supposed to "resurrect" old questions, then mods should not close repeated questions. – Gabriel Magana Nov 21 '12 at 13:39
1  
This does not work for tables with no rows. – jaycode May 1 at 2:14

I found this very useful. It will list all the tables that has that column name.

SELECT table_name, 
       column_name 
FROM   information_schema.columns 
WHERE  column_name LIKE '%the_column_name%' 
share|improve this answer

You could get a description of all the column in your table.

desc your_table;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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