mysql下创建字段并设置主键的php代码

复制代码 代码如下:


mysql_select_db("hills_database_test",$dbcon);
$alterpkadd="alter table hills_testcreatetable add id int(32) not null auto_increment primary key;";
mysql_query($alterpkadd,$dbcon);
mysql_close($dbcon);


嘿嘿。。好容易哟。。一句话搞定

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/cdbfeccf1c0be626b9a350f98ff9d407.html