PHP中常用的几个mysql语句
PHP中常用的几个mysql语句2008-05-02显示数据库或表:show databases;//然后可以use database_name;show tables;更改表名:alter table table_name rename new_t;添加列:alter table table_name add column c_n column attributes;删除列:alter table table_name drop column c_n;创...