PHP查询mysql数据表的所有列名
mysql自带查询列信息的语句:show full columns from 表名。
使用PHP代码查询,返回数组:
public function table_column($tbname) { $result = $this->queryAll("SHOW F[......]
mysql自带查询列信息的语句:show full columns from 表名。
使用PHP代码查询,返回数组:
public function table_column($tbname) { $result = $this->queryAll("SHOW F[......]