利用Python完成一个关于MySQL数据库的学生信息的增删改查程序,主要涉及知识点:游标的运用、SQL语句以及之前学习的基础知识。
如果你没有定义sqlite3模块,你需要先导入sqlite3 模块与pymysql数据库如下图:
如果没有安装sqlite3
可通过Windows+R–>输入cmd–>执行pip install sqlite3命令,如下图:
因为我之前是安装过的 所以会显错误
在我们开始做之前我们应该在大脑里构思,这个数据库应该具有怎样的操作,脑回路一定要清晰!!!
本小节重点
数据库链接的重中之重是必须创建游标对象,不能忘记这个就相当于Access里记录指针,切记别忘记写了
注意SQL语句的写法(如果有对自己写的有疑问,可以复制到MySQL中检验代码是否错误)如下图:
def insert():
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.DictCursor)
# cursor = conn.cursor(pymysql.cursors.SSCursor)
while True:
name = input("请输入学生姓名:")
if not name:
print('请输入有效的名字!')
continue
try:
# 执行SQL查询
gender = input("请输入学生姓别:")
age = input("请输入学生年龄:")
sql = "insert into student (name,gender,age) values ('" + name + "','" + gender + "'," + age + ")"
count = cursor.execute(sql)
if count > 0:
# 提交数据库修改
conn.commit()
# 提示用户成功了
print('记录插入成功~')
answer = input('是否继续添加?y/n\n')
if answer != 'y':
break
else:
continue
except pymysql.err.IntegrityError:
print('主键不允许重复')
以下本小节重点部分:
1.创建游标对象
2.查询的方式:是按ID,还是按着姓名
def search():
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
while True:
mode = input('按ID查找请输入1,按姓名查找输入2:')
if mode == '1':
id = input('请输入学生ID')
sql = f"select * from student where id={id}"
cursor.execute(sql)
print(cursor.fetchall())
answer = input('是否继续添加?y/n\n')
if answer != 'y':
break
else:
continue
elif mode == '2':
name = input('请输入学生姓名:')
sql = f"select * from student where name='{name}'"
cursor.execute(sql)
print(cursor.fetchall())
answer = input('是否继续添加?y/n\n')
if answer != 'y':
break
else:
continue
else:
print('您的输入有误,请重新输入')
continue # 返回while True
到这基本上就差不多了,其他的操作可以自己多练习
def delete():
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
while True:
student_id = input('请输入要删除学生的ID:')
if student_id != '':
sql = f"select * from student where id={student_id}"
cursor.execute(sql)
answer = input('是否继续删除?y/n\n')
if answer != 'y':
show()
break
else:
continue
else:
print('输入有误!请重新输入')
continue
也是本小节重点哦!
1.明确修改的是什么?
2.formart的另一种简便书写格式
def modify():
show()
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
while True:
student_id = input('请输入你要修改的学生学号(如 1,2):')
if student_id != '':
name = input('请输入准备修改的姓名:')
gender = input('请输入准备修改的性别:')
age = input('请输入准备修改的年龄:')
sql = f"update student set name='{name}',gender='{gender}',age={age} where id={student_id}"
d=cursor.execute(sql)
if d:
print("修改成功!")
else:
print("修改失败!")
answer = input('是否继续修改?y/n\n')
if answer != 'y':
show()
break
else:
continue
else:
print('输入有误!请重新输入')
continue
也是本小节重点哦!
1.本节代码易写错注意检查SQL语句
2.遍历的方式(复习)当然还有其他方法
def sort():
show()
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
asc_or_desc = input('请选择(0.升序,1.降序):')
sor = ""
if asc_or_desc == '0':
sor = "asc"
elif asc_or_desc == '1':
sor = "desc"
else:
print('您的输入有误,请重新输入')
sort()
# 有空在补充
# mode = input('请选择排序方式(1.按英语成绩排序,2.按Python成绩排序3.按Java排序 0.按着主程序排序)')
mode = input('请选择排序方式(1.按学号排序,2.按年龄排序)')
if mode == '1':
sql = f"select * from student order by id " + sor
cursor.execute(sql)
all_records = cursor.fetchall()
for record in all_records:
print(record[0], record[1], record[2], record[3])
elif mode == '2':
sql = f"select * from student order by age " + sor
cursor.execute(sql)
all_records = cursor.fetchall()
for record in all_records:
print(record[0], record[1], record[2], record[3])
def total():
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
sql = f"select gender,count(gender) as '人数' from student group by gender"
cursor.execute(sql)
all_records = cursor.fetchall()
for record in all_records:
print(record[0], record[1])
最后一个重点了哦!
def show():
# 创建游标对象
cursor = conn.cursor(pymysql.cursors.SSCursor)
sql = f"select * from student"
cursor.execute(sql)
all_records = cursor.fetchall()
format_title = '{:^6}\t{:^12}\t{:^8}\t{:^10}'
print(format_title.format('ID', '姓名', '性别', '年龄'))
format_data = '{:^6}\t{:^12}\t{:^8}\t{:^10}'
for record in all_records:
print(format_data.format(record[0], record[1], record[2], record[3]))