Mysql库与表的创建和使用

库的相关内容

create database 'name' charset utf8
创建一个数据库并设置字符集是utf8

create database if not exists 'name'
如果不存在就创建,存在就忽略

show databases
显示已存在的所有数据库

show databases like 'db_%'
查看数据库名字以db_开头的数据库

use 'database_name'
选择数据库

alter database 'database_name' default charset gbk default collate gbk_chinses_ci
修改数据库字符集

drop database if exists 'database_name'
如果存在就删除数据库,不存在就忽略

show engines
显示所有引擎

MySQL数据类型
数值类型:int
日期时间类型:date
字符串类型:varchar
浮点类型:float

表的相关内容

创建表
create table table-name(
id int not null auto_increment primary key comment 'id'
name varchar(10) not null comment '名字',
email varchar(20) not null comment '电子邮件'
);

查看所有表
show tables

查看表结构
desc table_name

查看表状态
show table status

删除一个表
drop table table_name

添加一个字段
alter table table_name add 字段名 int(10) not null

删除一个字段
alter table table_name drop column 字段

修改字段类型
alter table table_name modify 字段 varchar(15) null

更新表中的数据
update table_name set 字段 = ' '

删除表的所有行
delete from table_name

删除表并重新创建表结构
truncate table_name

插入数据
insert into table_name values ( )

检索表中的所有数据
select * from table_name

检索表中的数据并最多显示5行
select * from table_name limit 5

去重
select distinct 字段 from table_name

排序
select * from table_name order by 字段

分组
select * from table_name group by 字段

判断条件
select * from table_name where xxxxxx

自联结
select p1.scores,p1.id from scores as p1 ,scores as p2 where p1.stu_id = p2.stu_id and p2.id = 2;

左外联结
select students.name,scores.score from students left outer join scores on students.stu_id = scores.stu_id and scores.score < 60;

内联结
select students.name,scores.score from students inner join scores on students.stu_id = scores.stu_id and scores.score < 60; 内联结

子查询
select name from students where stu_id in (select stu_id from scores where score < 60);

视图
reate or replace view 视图名 as

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 上午商务沟通正式结课,不同于传统的试题考试,最后的考核以实际面试的形式为主,通过几分钟的对话来看你的沟通能力如何。...
    丸丸笑阅读 1,697评论 0 0
  • 第二章遇见他 他走以后,何韵诗继续一天的工作,到了快黄昏的时候她就要下班了,何韵诗是个喜欢干净的女孩,一下班就打水...
    迷儿诺娃阅读 1,103评论 0 0
  • 今天是2016年6月5日。也是猴年马月的第一天。12年一个轮回,12年前许下的承诺都兑现了么?那一年,我刚1...
    林小吾阅读 4,411评论 3 3
  • 一切都像指间沙,不要用力,不要试图把握。所有的动作只能加速它的失去,就像我们手指间的沙。沙子们最后都走了,留下我们...
    永远的浩子阅读 1,261评论 0 1

友情链接更多精彩内容