├── .gitignore ├── E-R图.vsd ├── LICENSE ├── README.md ├── hhstu.py ├── sql ├── admin.sql ├── books.sql ├── logs.sql └── students.sql └── 写作文档.doc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/.gitignore -------------------------------------------------------------------------------- /E-R图.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/E-R图.vsd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Simple-database-design 2 | 数据库大作业,简易的CRUD图书管理系统,Python 3 | -------------------------------------------------------------------------------- /hhstu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/hhstu.py -------------------------------------------------------------------------------- /sql/admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/sql/admin.sql -------------------------------------------------------------------------------- /sql/books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/sql/books.sql -------------------------------------------------------------------------------- /sql/logs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/sql/logs.sql -------------------------------------------------------------------------------- /sql/students.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/sql/students.sql -------------------------------------------------------------------------------- /写作文档.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo0123456/Simple-database-design/HEAD/写作文档.doc --------------------------------------------------------------------------------