MySQL数据库命令

一、MySQL数据库
1.安装

sudo apt-get install mysql-server mysql-client

启动

service mysql start

停止

service mysql stop

重启

service mysql restart

查询服务是否启动

netstat -tap | grep mysql

连接服务器

mysql -hip -uname -ppasswd

创建数据库

create database 数据库名 charset = utf8;

删除数据库

drop database 数据库名;

切换数据库

use 数据库名;

查看当前选择数据库

select database();

创建表
命令中运行

drop table if exisit 表名;
create table 表名(
        id int primary key(主键) auto_increment(自动增长),
        name varchar
)
修改表
alter table 表名 add|modify|drop 列名 类型;
如:
alter table students add birthday datetime;
删除表
drop table 表名;
查看表结构
desc 表名;
更改表名称
rename table 原表名 to 新表名;
查看表的创建语句
show create table '表名';
修改
update 表名 set 列1=值1,... where 条件
删除
delete from 表名 where 条件

2.查询

select * from 表名 where 条件
select * from stu where name = ‘lisi’

where和having
where用在分组前
having用在分组后

在select后面列前使用distinct可以消除重复的行

select distinct gender from students

逻辑运算符:and or not

select * from stu where id > 3 or name ='lisi'

模糊查询:like,%表示任意多个字符,_表示一个字符

select * from stu where name lik '张%'

条件优先级:小括号→not→比较运算符→逻辑运算符

3.聚合
聚合函数:count,max,min,sum,avg

count:求总数

select count(*)from students

max:求最大

select max(id) from stu where gander = 0

min:求最小

select min(id) from stu 

sum:求和

select sum(id) from stu where gender = 1

avg:求平均值

select avg(id) from stu 

4.分组

顺序:select
from
where
group by
having
limit

select max(id) from stu 
where name = '张%' 
group by gender 
having age >=20 
linmit 0,20

5.添加外联
关联的外键必须为主键,保持唯一性
create table scores(
id int primary key auto_increment
sname varchar
constraint stu_scores foreign key(sname) references students(id)
)
一对一和多对多的区别在于给外键设置UNIQUE,
多对多的情况下需要设置第三个关系表,先给关系表添加两个外键,然后分别将两个表的外键绑定到关系表的两个外键上

drop table if exists students;
create table students(
    sid int primary key auto_increment,
    sname varchar(20)
);

drop table if exists teachers;
create table teachers(
    tid int primary key auto_increment,
    tname varchar(20)
);

drop table if exists reletion;
create table reletion(
    stuid int not null,
    tchid int 
);
alter table reletion add constraint reletion_main primary key(stuid,tchid);
alter table reletion add constraint reletion_fk1 foreign key(stuid) references students(sid);
alter table reletion add constraint reletion_fk2 foreign key(tchid) references teachers(tid)

6.连接查询

查询男生的姓名、总分
select students.sname,sum(scores.score)
from scores
inner join students on scores.stuid=students.id
where students.gender=1
group by students.sname;

7.事务
数据库的事务遵循四大特征(ACID):
原子性(Atomicity):事务中的全部操作在数据库中是不可分割的,要么全部完成,要么均不执行
一致性(Consistency):几个并行执行的事务,其执行结果必须与按某一顺序串行执行的结果相一致
隔离性(Isolation):事务的执行不受其他事务的干扰,事务执行的中间结果对其他事务必须是透明的
持久性(Durability):对于任意已提交事务,系统必须保证该事务对数据库的改变不被丢失,即使数据库出现故障

· 要求:表的类型必须是innodb或bdb
类型,才可以对此表使用事务

8.与python交互

安装pymysql

sudo apt install python3-pip3
pip3 install pymysql

用于建立与数据库的连接
创建对象:调用connect()方法

conn = connect(参数列表)

对象的方法:
close()关闭连接
commit()事务,所以需要提交才会生效
rollback()事务,放弃之前的操作
cursor()返回Cursor对象,用于执行sql语句并获得结果
execute(operation [, parameters ])执行语句,返回受影响的行数
fetchone()执行查询语句时,获取查询结果集的第一个行数据,返回一个元组
fetchall()执行查询时,获取结果集的所有行,一行构成一个元组,再将这些元组装入一个元组返回
scroll(value[,mode])将行指针移动到某个位置

增删改

from pymysql import *
try:
    conn = connect(host='localhost',port=3306,db='granblue_fantasy',user='root',passwd = '123',charset = 'utf8')
    cur = conn.cursor()
    #cur.execute("insert into student values(01,'张良')")
    #cur.execute("update student set sname ='irlans' where id =01")
    #cur.execute("delete from student where id = 01")
    #params = [1,'lisi']
    #cur.execute("insert into student value(%s,%s)",params)
    #cur.execute("select sname from student where id = 1")
    #ret = cur.fetchall()
    #print(ret[0])
    conn.commit()
    cur.close()
except Exception as e:
    print(e)

查询一行数据

print(cur.fetchone())

查询多行数据

print(cur.fetchall())

封装:

from pymysql import *
from hashlib import *


class MySQLManager():
    
    def __init__(self,host,port,db,user,passwd,charset='utf8'):
        self.host = host
        self.port = port
        self.db = db
        self.user = user
        self.passwd = passwd
        self.charset = charset

    def connect(self):
        self.conn = connect(host=self.host, port=self.port,db=self.db,user=self.user,passwd=self.passwd,charset=self.charset)
        self.cur = self.conn.cursor()

    def __edit(self,sql,params=None):
        self.cur.execute(sql,params)
        self.conn.commit()

    def insert(self,sql,params=None):
        self.__edit(sql,params)

    def delete(self,sql,params=None):
        self.__edit(sql,params)

    def update(self,sql,params=None):
        self.__edit(sql,params)

    def serach_sigle(self,sql,params=None):
        self.__edit(sql,params)
        return self.cur.fetchone()

    def serach_plu(self,sql,params=None):
        self.__edit(sql,params)
        return self.cur.fetchall()
    def close(self):
        self.cur.close()
        self.conn.close()

def md5Encrypt(userPasswd):
    mymd5 = md5()
    mymd5.update(userPasswd.encode('utf-8'))
    return mymd5.hexdigest()

def register():
    userName = input('请输入用户名:')
    userPasswd = input('请输入密码:')
    userPasswd = md5Encrypt(userPasswd)
    manager = MySQLManager('localhost',3306,'granblue_fantasy','root',123)
    manager.connect()
    sql = 'insert into userlist(username,passwd) value(%s,%s)'
    params = [userName,userPasswd]
    manager.insert(sql,params)
    manager.close()

register()

你可能感兴趣的:(MySQL数据库命令)