在PHP中遍歷資料庫表中的資料

2022-07-26 05:00:20 字數 480 閱讀 1910

資料庫中的資料:

//1.分別將每一行的每一列遍歷出來

//mysql_fetch_row()函式在每一次遍歷後會將指標向後自動移動乙個單位

while($row=mysql_fetch_row($result))

輸出結果為:

日期:2015-11-25 14:24:42

姓名:zhangliang

日期:2015-11-25 14:36:36

姓名:ab

日期:2015-11-25 14:36:36

姓名:abs

//一次性將整行的資料讀出來

while($row=mysql_fetch_row($result))

}輸出結果為:

2015-11-25 14:24:42

zhangliang

2015-11-25 14:36:36

ab2015-11-25 14:36:36

abs

ASP遍歷資料庫

language vbscript codepage 65001 setrstschema db.openschema 20 do untilrstschema.eof 遍歷資料庫表 ifrstschema table type table thenresponse.write rstschema ...

SQL 建立索引,遍歷資料庫所有表

檢視資料庫表占用的磁碟空間 執行儲存過程 exec sp spaceused tablename 建立聚簇索引 create clustered index indexname on tablename columnname 不允許有重覆記錄 create index clustered index...

資料庫 在表中新增資料

拿這個表舉例 這個就是按順序新增資料 insert into student values 1001 劉一 18 計算機系 男 insert into student values 1002 錢二 19 機電系 女 insert into student values 1003 張三 17 計算機系...