目录
MySQL是程序员必须要掌握的,其实语法结构相比于其他的数据结构、Java、C++来说应该算是简单的,只要多多练习,拿下它应该不成问题。本文是将我学过的面试笔试重点的知识进行归纳总结,如果你认为写的不错的话,求点赞,求收藏,感谢!!!
一、MySQL数据库基础
1,数据库的操作
1.1、显示当前数据库
show databases;
1.2 、创建数据库
语法:
CREATE DATABASE [IF NOT EXISTS] db_name [create_specification [, create_specification] ...]
示例:
创建名为 db_test1 的数据库
create database db_test1;
如果系统没有 db_test2 的数据库,则创建一个名叫 db_test2 的数据库,如果有则不创建
create database if not db_test1;
1.3、使用数据库
进行表的操作前的重要的一步
use 数据库名;
1.4、删除数据库
说明: 数据库删除以后,内部看不到对应的数据库,里边的表和数据全部被删除
DROP DATABASE [IF EXISTS] db_name;
2、常用数据类型
2.1、数值类型
分为整型和浮点型:
数值类型可以指定为无符号(unsigned),表示不取负数。1字节(bytes)= 8bit。 对于整型类型的范围: 1. 有符号范围:-2^(类型字节数*8-1)到2^(类型字节数*8-1)-1,如int是4字节,就 是-2^31到2^31-1 2. 无符号范围:0到2^(类型字节数*8)-1,如int就是2^32-1。
2.2、字符串类型
2.3、日期类型
3、表的操作
use db_test;
3.1、创建表
语法:
CREATE TABLE table_name ( field1 datatype, field2 datatype, field3 datatype );
示例:
create table stu_test( id int, name varchar(20) comment '姓名', password varchar(20) comment '密码', age int, sex varchar(1), birthday timestamp, amout decimal(13,2), resume text );
3.2、查看表结构
desc 表名;
3.4、删除表
语法格式:
DROP [TEMPORARY] TABLE [IF EXISTS] tbl_name [, tbl_name] ...
示例:
-- 删除 stu_test 表 drop table stu_test; -- 如果存在 stu_test 表,则删除 stu_test 表 drop table if exists stu_test;
4、总结
4.1、操作数据库
-- 显示 show databases; -- 创建 create database xxx; -- 使用 use xxx; -- 删除 drop database xxx;
4.2、常用数据类型
INT:整型 DECIMAL(M, D):浮点数类型 VARCHAR(SIZE):字符串类型 TIMESTAMP:日期类型
4.3、操作表
-- 查看 show 表; -- 创建 create table 表名( 字段1 类型1, 字段2 类型2, ... ); -- 删除 drop talbe 表名;
5、综合练习
有一个商店的数据,记录客户及购物情况,有以下三个表组成:
商品goods(商品编号goods_id,商品名goods_name, 单价unitprice, 商品类别category, 供 应商provider)
客户customer(客户号customer_id,姓名name,住址address,邮箱email,性别sex,身份证 card_id)
购买purchase(购买订单号order_id,客户号customer_id,商品号goods_id,购买数量nums)
create database shop; use shop; create table goods( good_id int comment '商品编号', good_name varchar(30) comment '商品名称', unitprice int comment '单价', category varchar(30) comment '商品类别', provider varchar(64) comment '供应商名称' ); create table if not exists customer ( customer_id int comment '客户编号', name varchar(32) comment '客户姓名', address varchar(256) comment '客户地址', email varchar(64) comment '电子邮箱', sex bit comment '性别', card_id varchar(18) comment '身份证' ); create table if not exists purchase ( order_id int comment '订单号', customer_id int comment '客户编号', goods_id int comment '商品编号', nums int comment '购买数量' );
二、MySQL表的增删改查基础
1、CRUD
注释:在SQL中可以使用“--空格+描述”来表示注释说明
CRUD 即增加(Create)、查询(Retrieve)、更新(Update)、删除(Delete)四个单词的首字母缩写。
2、新增(Create)
语法:
INSERT [INTO] table_name [(column [, column] ...)] VALUES (value_list) [, (value_list)] ... value_list: value, [, value] ...
案例:
create table student( id int, sn int comment '学号', name varchar(20) comment '姓名', _mail varchar(20) comment '邮箱' );
2.1、单行数据 + 全列插入
insert into student values(1,1000,'擦洗',NUll); insert into student values(2,1001,'好还是', '');
2.2、多行数据 + 指定列插入
insert into student(id,sn,name) values (3,1002,'李白'), (4,1003,'曹操');
3、查询(Retrieve)
语法:
SELECT [DISTINCT] {* | {column [, column] ...} [FROM table_name] [WHERE ...] [ORDER BY column [ASC | DESC], ...] LIMIT ...
案例:
create table exam_result( id int, name varchar(20), chinese decimal(3,1), math decimal(3,1), english decimal(3,1) );
insert into exam_result values (1,'唐三藏', 67, 98, 56), (2,'孙悟空', 87.5, 78, 77), (3,'猪悟能', 88, 98.5, 90), (4,'曹孟德', 82, 84, 67), (5,'刘玄德', 55.5, 85, 45), (6,'孙权', 70, 73, 78.5), (7,'宋公明', 75, 65, 30);
3.1、全列查询
select * from exam_result;
select id,name,chinese from exam_result;
select chinese,math,english from exam_result;
3.2、查询字段为表达式
select id,name,10 from exam_result;
select id,name,english + 10 from exam_result;
3.3、别名
语法:
SELECT column [AS] alias_name [...] FROM table_name;
select id,name,chinese+math+english as total from exam_result;
3.4、去重:DISTINCT
select distinct math from exam_result;
3.5、排序:ORDER BY
语法:
-- ASC 为升序(从小到大) -- DESC 为降序(从大到小) -- 默认为 ASC SELECT ... FROM table_name [WHERE ...] ORDER BY column [ASC|DESC], [...];
1. 没有 ORDER BY 子句的查询,返回的顺序是未定义的,永远不要依赖这个顺序
2. NULL 数据排序,视为比任何值都小,升序出现在最上面,降序出现在最下面
select name,chinese from exam_result order by chinese;
select name,chinese from exam_result order by chinese desc;
3. 使用表达式及别名排序
select name,chinese+math+english total from exam_result order by total desc;
select name,chinese+math+english from exam_result order by chinese+math+english desc;
4. 可以对多个字段进行排序,排序优先级随书写顺序
-- 查询同学各门成绩,依次按 数学降序,英语升序,语文升序的方式显示 select name,math,english,chinese from exam_result order by math desc,chinese,english;
3.6、条件查询:WHERE
比较运算符:
逻辑运算符:
注:
1. WHERE条件可以使用表达式,但不能使用别名。
2. AND的优先级高于OR,在同时使用时,需要使用小括号()包裹优先执行的部分
基本查询:
-- 查询英语不及格的同学及英语成绩 ( < 60 ) select name, english from exam_result where english < 60;
-- 查询语文成绩好于英语成绩的同学 select name,chinese,english from exam_result where chinese > english;
-- 查询总分在 200 分以下的同学 select name,chinese+math+english total from exam_result where chinese+math+english < 200;
AND与OR:
select * from exam_result where chinese > 80 and english > 80;
select * from exam_result where chinese > 80 or english > 80;
select * from exam_result where chinese > 80 or math > 70 and english > 80;
select * from exam_result where (chinese > 80 or math > 70) and english > 80;
范围查询:
1. BETWEEN ... AND ...
今天的文章 MySQL大总结分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/bian-cheng-ji-chu/86055.html