1 连接数据库,找到msysql
C:\Windows\system32>cd C:\Program Files\MySQL\MySQL Server 5.7\bin
C:\Program Files\MySQL\MySQL Server 5.7\bin>mysql -uroot -p
Enter password: ****
2 查询数据库
mysql> create databases;
3新建数据库
mysql> create database sjk;
4切换数据库
mysql> use sjk;
5显示数据库里的表
mysql> show tables;
6新建表
use sjk;
create table 表名(字段设定列表)//ENGINE:引擎 默认字符类型是utf8
create table if not exists stuTable (id int,name varchar(20),gender varchar(2))ENGINE='innoDB' default charset='utf8';
7显示数据表的结构
describe 表名;
describe stutable;
8插入数据
插入数据:insert into 表名(字段名1,字段2) values(值1,值2);
mysql> insert into stutable(name,gender)values('张三','M');
9修改数据
修改:update 表名 set 字段1=值1,字段2=值2 where 条件;
mysql> update stutable set name='李四'where name='张三';
10显示表中的记录
select * from 表名
mysql> select *from stutable;
11修改字段名或者儿编码类型
11_1增加字段
mysql> alter table stuTable add( beizhu char(8));
11-2重命名
mysql> alter table stuTable rename to student;
11-3修改属性
mysql> alter table student change beizhu opp char not null;
11-4删除
mysql> alter table student drop oop;
12查询
select *from student;//查询所有
select * from student id = 4;// 根据条件查询
select name,phone from stuTable where phone = '119' or phone = '120' // ||
select * from stuTable where name = 'xiaohan' and phone = '120 // &&
// 模糊查找
select count(name) from stuTable where name like '%xiao%' // like % 模糊查找
13排序
select score from scoreTable order by score // 升序
select * from scoreTable order by score desc // 降序
select score from scoreTable where score > 70 order by score limit 0,1
// limit begin,pageCount
14函数
count() 统计个数
max() 最大值
min() 最小值
avg() 平均值
MYSQl命令整理
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Photoreading是关注许久的行动派琦琦强烈推荐过好几次的课程。在课程介绍中,几个关键词就都抓住了我的好奇,...