所以大于六十分的SELECT * from score where num > 60; 所有老师以及所教课程 select teacher.tname, course.cname from course left join teacher on course.teacher_id = teacher ...
分类:
数据库 时间:
2018-06-21 13:52:47
阅读次数:
197
事务Transactions ?通过前面的案例及解决方案,我们就引出了一个全新的概念,那就是:事务,即一系列将要发生或正在发生的连续操作; 而事务安全,是一种保护连续操作同时实现(完成)的机制。事务安全的意义就是,保证数据操作的完整性。 遵循ACID原则: A:atomicity原子性;整个事务中的 ...
分类:
数据库 时间:
2018-06-21 13:49:06
阅读次数:
165
核心 利用HibernateTools,从POJO类,Mapping映射文件,数据库表有其中的一项,就能生成其他两项。 概述 在使用Hibernate开发系统持久层时,按照一般开发流程 1、分析业务 2、获得系统实体类 3、写Hibernate的mapping映射文件 4、根据映射文件,生成数据库表 ...
分类:
移动开发 时间:
2018-06-20 14:45:35
阅读次数:
224
create table student ( sno int primary key, sname char(20), sex char(2), birthday datetime, class int )create table teacher ( tno int primary key, tna ...
分类:
数据库 时间:
2018-06-19 21:26:37
阅读次数:
205
截图 表名称以此为course,teacher,class,score,student 代码 calss 表 create table class( cid int primary key auto_increment, caption varchar(20) not null ); insert ...
分类:
数据库 时间:
2018-06-19 17:48:29
阅读次数:
308
#!/usr/bin/env python # encoding: utf-8 # Date: 2018/6/18# from threading import Thread,Event# import time# event = Event()# # event.wait()# # event.s ...
分类:
其他好文 时间:
2018-06-19 00:47:45
阅读次数:
183
今天开始回顾一下老师页面的代码 先看下html的页面效果图 首先看下如何实现页面渲染老师列表,这里实现了两种方法 先看视图函数,老师页面对应的视图还是是teacher 然后我们来看视图函数 下面是视图函数所有的代码 先看方法1是如何实现的 这里我们导入了我们自己写的page_helper的类,用来构 ...
分类:
其他好文 时间:
2018-06-17 12:28:25
阅读次数:
144
接着上一篇博客继续往下总结,上一篇博客的地址:https://www.cnblogs.com/bainianminguo/p/9189324.html 我们开始吧 这里我们就需要先看下我们设计的数据库 一、先看下数据库的设计,我们一共创建了3张表 表1为class表,他是一个单表,只有一个class ...
分类:
其他好文 时间:
2018-06-16 13:26:47
阅读次数:
182
4-5 user modesl.py设计 循环引用: 设计app时每个app都有model mark 如图:我们在user中定义usercourse记录用户学习的课程。会有两个外键:user和course。 我们就会import Courses.models 如果用户对课程的评论:会放在 Cours ...
分类:
其他好文 时间:
2018-06-15 13:06:36
阅读次数:
229