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
|
|
In PHP:
This should also help you:
Or you can do:
There has been a similar question posed on SO here before. |
|||||||||||
|
|
Try:
|
|||
|
|
|
Well, one way is to do:
If you get an error:
then it does not exists. |
|||||||||
|
|
Another way of doing it in PHP:
|
|||||||||||
|
|
I found this very useful. It will list all the tables that has that column name.
|
||||
|
|