数据库基础

数据库学习笔记

  • DB:数据库(database):存储数据的“仓库”

  • DBMS:数据库管理系统、数据库软件(产品):MYSQL、Oracle(甲骨文)、DB2(IBM)、SqlServer(微软,只能安装在window系统)

  • SQL:结构化查询语言,几乎所有的数据库都支持的语言

  • MySQL的基础使用

    • 1、打开“计算机”—>"管理"—>"服务",找到自己的mysql,手动启动和停止服务

    • 2、管理员身份打开cmd,输入net start mysql启动,net stop mysql停止服务

    • 3、输入mysql -h (主机名)localhost -P 3306(端口号) -u (用户名)root -p(密码)进入mysql命令行

    • 4、连接本机可以简写mysql -u用户名 -p密码

    • 5、show databases;显示已有数据库

    • 6、进入某个数据库use 库名;

    • 7、查看数据库的所有表show tables;

    • 8、查看其它数据的所有表show tables from 数据库名

    • 9、查询现在在哪个表select database();

    • 10、创建表

      create table stuinfo(
          id int,
          name varchar(20)
      );
      
    • 11、查看表的结构desc stuinfo;

    • 12、查看表中的所有数据select * from stuinfo;

    • 13、向表中插入数据

      insert into stuinfo (id,name) values(1,'tom');
      
    • 14、修改表中数据

      update stuinfo set name="zhangsan" where id=1;
      
    • 15、删除表中数据

      delete from stuinfo where id=1;
      
    • 16、查看当前mysql版本

      • 方式一:登录mysql服务端,select version();
      • 方式二:没有登录mysql服务端,mysql --version 或 mysql -V

    SQL语言

    • DQL:数据库查询语句

      # 基础查询一
      # 语法:select 查询列表 from  表名;
      # 查询列表:字段、常量值、函数、表达式
      use employees;
      # 1.查询表中的单个字段
      select last_name from employees;
      # 2.查询表中的多个字段
      select last_name,salary,email from employees;
      # 3.查询表中所有字段
      select * from employees;
      # 4.查询常量值
      select 100;
      select 'john';
      # 5.查询表达式
      select 100*98;
      # 6.查询函数
      select version();
      # 7.起别名
      # 7.1 便于理解
      # 7.2 如果要查询的字段有重名的情况,使用别名可以区分开来
      # 方式一
      select 100%98 as 结果;
      select last_name as 姓, first_name as 名 from employees;
      # 方式二
      select last_name 姓, first_name 名 from employees;
      # 8.去重
      select distinct department_id from employees;
      # 9. +号的作用
      # 案列:查询员工名和姓连接成一个字段,并显示为姓名
      # SQL中的 + 号只表示运算符的意义,'123'+1=1, 1+123=124, 1+null=null。
      select concat(last_name,first_name) as 姓名 from employees;
      
      # 基础查询二
      # 语法 select 查询列表 from 表名 where 筛选条件;
      # 条件表达式:> < = != <> >= <=
      # 逻辑运算符:&& || ! and or not
      # 模糊查询 like between and in is null
      # 1. 按条件表达式筛选
      # 查询工资>12000的员工信息
      select * from employees where salary>12000;
      # 查询部门编号不等于90号的员工名和部门编号
      select last_name,department_id from employees where department_id<>90;
      # 2. 按逻辑运算符筛选
      # 查询工资在10000到20000之间的员工名、工资以及奖金
      select last_name,salary,commission_pct from employees where salary>=10000 and salary<=20000;
      # 查询部门编号不是90到110之间,或者工资高于15000的员工信息
      select * from employees where department_id<90 or department_id>110 or salary>15000; 
      select * from employees where not(dapartment_id >=90 and department_id<=110) or salary>15000;
      # 3. 模糊查询 % _ 为占位符,% 匹配多个字符,_ 匹配一个字符。
      # 查询员工名中包含字符a的员工信息
      select * from employees where last_name like '%a%';
      # 查询员工编号在100到120之间的员工信息
      select * from employees where employee_id between 100 and 120;
      # 等价于
      select * from employees where employee_id >=120 AND employee_id<=100;
      # 查询员工的工种编号为 IT_PROT、AD_VP、AD_PRES 中的一个员工名和工种编号
      select last_name,job_id from employees where join_id = 'IT_PROT' or join_id = 'AD_VP' or job_id = 'AD_PRES';
      # 等价于
      select last_name,job_id from employees where job_id in('IT_PROT','AD_VP','AD_PRES');
      # 查询没有奖金的员工名和奖金率
      select last_name,commission_pct from employees where commission_pct IS NULL;
      # 查询有奖金的员工名和奖金率
      select last_name,commission_pct from employees where commission_pct IS NOT NULL;
      # 安全等于 <=>
      # 查询没有奖金的员工名和奖金率
      select last_name,commission_pct from employees where commission_pct <=> NULL;
      select last_name,salary from employees where salary <=> 12000;
      
      # 排序查询
      # select 查询列表 from 表 where 查询条件 order by 排序列表 【DESC: 降序 ASC:升序】 默认升序
      # 查询部门编号>=90的员工信息,按入职时间的先后进行排序
      select * from employees where department_id>=90 order by hiredate ASC;
      # 按年薪的高低显示员工的信息和年薪(安表达式排序)
      select *,salary*12*(1+IFNULL(commision_pct,0)) 年薪 from employees order by 年薪 DESC;
      # 按姓名的长度显示员工的姓名和工资(按函数排序)
      select length(last_name) 字节长度,last_name,salary from employees order by length(last_name) DESC;
      # 查询员工信息,要求先按工资排序,再按员工编号排序(按多个字段排序)
      select * from employees order by salary ASC,employee_id DESC;
      
      # 常见函数
      # 单行函数:concat、length、ifnull等
      # 分组函数:聚合函数
      # 1. 字符函数 length 获取参数值的字节个数
      select length('john'); # 4
      select length('张三aaaa') # 10 汉字在utf-8中占3个字节
      show variables like '%char%'; # UTF-8
      # 2. concat 拼接字符串
      select concat(last_name,'_',first_name) 姓名 from employees;
      # 3. upper、lower 
      # 将姓变大写,名变小写,然后拼接
      select concat(upper(last_name),'_',lower(first_name)) 姓名 from employees;
      # 4. substr、substring 截取,注意:索引从1开始
      select substr('我是蜘蛛侠', 3) out_put; # 蜘蛛侠
      select substr('我是蜘蛛侠',1,4); # 我是蜘蛛
      # 5. instr 返回字串第一次出现的索引,如果找不到返回0
      select instr('我是勤劳的小蜜蜂,小蜜蜂啊!小蜜蜂!', '小蜜蜂') as out; # 6
      # 6. trim 去前后空格
      select length(trim('   张三   ')) as out; # 6
      select trim('a', from 'aaaa张aaaa三aaaa') as out; # 张aaaa三
      

你可能感兴趣的:(数据库基础)