一、首先在计算机左下角 开始→搜索(输入PowerShell)打开命令行;
最终得到下图;
二、登录——做准备
1.启动服务
shell>mysqld
2.客户端
shell> mysql --help
3.客户端登陆
mysql -u root -p
如果服务器在另一台计算机 , 需要ip地址和端口参数 mysql -h 127.0.0.1 -u root -p , mysql登陆时指定要操作哪个数据库
三、命令输入
mysql -u root -p +库名
~登录成功如下!
~ 退出命令
\q
~查询版本 、当前日期命令
SELECT VERSION(), CURRENT_DATE();
~查询版本、当前日期命令两表分割开用分号;如
select version(); select current_date();
~查询用户、当前日期命令这是两个两个不同命令,如果不用分号结束,则命令默认一直进行若是想要推出可按ctrl+c
select user(),
current_date;
~显示数据库
~信息模式会显示→ MySQL
~性能表现模式会显示→ 系统
show databases;
~更改数据库 USE+库名
USE changed;
~展示表格,会把你所登录的表展示出来
SHOW TABLES;
~创建表
create table pet (name varchar(20),
owner varchar(20),
species varchar(20),
sex char(1),
birth date,
death date);
~把表描述出来,如下图
describe pet;
~往表里输入信息则为
insert into pet values (‘阿黄’,‘实打’,‘萨达’,‘f’,‘2006-02-03’,‘1997-04-01’);
insert into pet values (‘士大’,‘撒打’,‘萨达’,‘d’,‘2006-02-02’,‘1999-04-01’);
~列出表信息
select * from pet;
~满足某一条件,查询当列的信息
select * from pet where sex=‘d’;
~满足两个条件用and连接,可以用条件符号控制所选择的条件
select * from pet where sex=‘d’ and death>‘1997-05-05’;
~选择表中某一表头控制的条件的列
select owner from pet;
select distinct owner from pet;
~直接引用查找的条件,查找要找的列
select * from pet where species in (‘狗’,‘猫’);
~输入条件,按出生日期正序输出表列
select name,birth from pet order by birth;
~时间倒叙只需要在最后加上desc
select name,birth from pet order by birth desc;
~满足某条件的输出要求的条件,不满足条件的不输出,展示的列表为
select name,birth from pet where death is not null;
~满足某条件的输出要求的条件,不满足条件的不输出,且按顺序展示要求的条件的表
select name, birth from pet where death is not null order by death desc;
~计算年龄
select name, birth,curdate(),
timestampdiff(year,birth,curdate()) as age
from pet;
~调出月份
select name,birth,month(birth) from pet;
~条件限定调出限定的月份列
select name,birth from pet
where month(birth)=month(date_add(curdate(), interval 1 month));
~直接取条件
select date_add(curdate(),interval 1 month);
~大于,小于就是不等于。所以下列两句所得列表相同
select * from pet where sex<>‘f’;
select * from pet where sex!=‘f’;
~模糊查询 示例如下
select * from pet where name like ‘阿%’;
select * from pet where name like ‘%阿%’;
select * from pet where name like ‘阿_’;
~用模糊查询,查询字符(character)变量
show variables like ‘%character%’;