工作时需要取得MySQL中一个表的字段是否存在
于是就使用Describe命令来判断
mysql_connect('localhost', 'root', 'root');
mysql_select_db('demo');
$test = mysql_query('Describe cdb_posts first');
$test = mysql_fetch_array($test);
$test[0]返回的是该字段的名称,比如我要查询first字段,返回的就是first
如果此字段不存在返回的就是NULL,通过这样可以判断一个字段是否存在
附加资料:
describe命令
一、descri...
阅读全文