python Day 4 :员工信息表程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Day 4 :员工信息表程序相关的知识,希望对你有一定的参考价值。
员工信息表程序,实现增删改查操作:
可进行模糊查询,语法至少支持下面3种:
select name,age from staff_table where age > 22
select * from staff_table where dept = "IT"
select * from staff_table where enroll_date like "2013"
查到的信息,打印后,最后面还要显示查到的条数
可创建新员工纪录,以phone做唯一键,staff_id需自增
可删除指定员工信息纪录,输入员工id,即可删除
可修改员工信息,语法如下:
UPDATE staff_table SET dept="Market" where dept = "IT"
注意:以上需求,要充分使用函数,请尽你的最大限度来减少重复代码
详细描述参考http://www.cnblogs.com/alex3714/articles/5740985.html
以上是关于python Day 4 :员工信息表程序的主要内容,如果未能解决你的问题,请参考以下文章
python's sixth day for me 员工信息表
oldboy sixteenth day. I love Python. low版本的 员工信息程序:
Python 基础 - Day 3 Assignment - Compensation Management System 工资管理系统