程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 如何獲得mysql數據庫的所有的列

如何獲得mysql數據庫的所有的列

編輯:MySQL綜合教程

如何獲得mysql數據庫的所有的列  

SELECT  COLUMN_NAME FROM  `information_schema`.`COLUMNS` where  `TABLE_NAME`='appStats' order by COLUMN_NAME

 

  所有字段獲取:  
SELECT COLUMN_NAME FROM 'information_schema'.'COLUMNS' where 'TABLE_SCHEMA'='數據庫名稱' and 'TABLE_NAME'='你的表名' order by COLUMN_NAME;

 

  或者  
select * from ’information_schema‘.’

columns‘ where ’table_name‘='表名‘;

 

  笨方法:   單個獲取  
$re_name_1=mysql_field_name($result,1);

$re_name_2=mysql_field_name($result,2);

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved