mysql常用命令
Posted 阿拉米苏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql常用命令相关的知识,希望对你有一定的参考价值。
1. show databases; 查看数据库
2. use 数据库名称; 切换使用指定的数据库
3. show tables;查看当前数据库中存在的表
4. 创建一张表,简单举例如下:
create table person( id int not null, name varchar(20), age int) ;
5. 添加对象到表中:
insert into person values (‘1‘,‘smith‘,‘17‘);
6. drop 表名; 删除表
7. 更改表结构:
增加属性:
alter table 表名 add 字段名 字段类型;
修改某个特性的属性:
alter table 表名 modify 列名 新的数据类型
以上是关于mysql常用命令的主要内容,如果未能解决你的问题,请参考以下文章