PHP中常用到的一些MySQL语句
在PHP开发中,经常会使用到MySQL语句,下面就为您列举了一些经常使用的MySQL语句,希望对您平时的学习和开发工作能起到些许的作用。
MySQL语句显示数据库或表:
show databases;//然后可以use database_name;
show tables;
MySQL语句更改表名:
alter table table_name rename new_t;
MySQL语句添加列 :
alter table table_name add column c_n column attributes;
MySQL语句删除列:
alter table table_name drop column c_n;
MySQL语句创建索引:
alter table c_table add index (c_n1,c_n2);
alter table c_table add unique index_name(c_n);
alter table c_table add primary key(sid);
MySQL语句删除索引:
alter table c_table drop index c_n1;
MySQL语句更改列信息:
alter table t_table change c_1 c_1 varchar(200);
alter table t_table modify 1 c_1 varchar(200);
insert插入语句:
insert into table_name (c_1,c_2)
values ('x1',1);
update语句:
update table_name set c_1 =1 where c_2=3;
MySQL语句删除数据库或者表:
drop table table_name;
drop database database_name;//使用mysql_drop_db()可以删除的.
关键字:PHP、MySQL、数据库
新文章:
- CentOS7下图形配置网络的方法
- CentOS 7如何添加删除用户
- 如何解决centos7双系统后丢失windows启动项
- CentOS单网卡如何批量添加不同IP段
- CentOS下iconv命令的介绍
- Centos7 SSH密钥登陆及密码密钥双重验证详解
- CentOS 7.1添加删除用户的方法
- CentOS查找/扫描局域网打印机IP讲解
- CentOS7使用hostapd实现无AP模式的详解
- su命令不能切换root的解决方法
- 解决VMware下CentOS7网络重启出错
- 解决Centos7双系统后丢失windows启动项
- CentOS下如何避免文件覆盖
- CentOS7和CentOS6系统有什么不同呢
- Centos 6.6默认iptable规则详解