1. 首页
  2. 数据库
  3. 其它
  4. PHP中常用的几个 mysql操作

PHP中常用的几个 mysql操作

上传者: 2020-12-22 01:20:17上传 PDF文件 30.84KB 热度 16次
显示数据库或表: 代码如下: 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; 创建索引: 代码如下: alter table c_table add index (c_n1,c_n2);
用户评论