时间:2021-07-01 10:21:17 帮助过:29人阅读
$link = mysql_connect("localhost", "root", "pwd") or die("Could not connect: " . mysql_error());mysql_select_db("dbName", $link);$result = mysql_query("show fields from tableName") or die("Could not query:" . mysql_error());while($re = mysql_fetch_array($result)){ echo $re[0]; echo '
';}mysql_close($link);
php读取记录到数组,然后取数组键值 再写入数据库,这个已经知道了。现在想直接利用SQL写入。
还好在SQL板块找到答案了,所有 表字段都被mysql记录了