【1】 多对多表的设计 student id teacher id stundent_teacher id sid tid 一个学生有多个老师,一个老师有多个学生 这个时候就设计一张中间表,放学生表的id和老师表的id就行 隐藏条件:学生表和中间表的学id11对应,老师表的id和中间表老师id11对 ...
分类:
其他好文 时间:
2018-11-21 16:10:28
阅读次数:
169
1.详细的建表语句 ***** create table 表名( 字段名1 数据类型[(长度) 约束条件], 字段名2 数据类型[(长度) 约束条件] ); 解释: 类型:使用限制字段必须以什么样的数据类型传值 约束条件:约束条件是在类型之外添加一种额外的限制 为什么需要给数据分类?(189 一八九 ...
分类:
编程语言 时间:
2018-11-20 21:41:08
阅读次数:
183
B. Math time limit per test:1 second memory limit per test:256 megabytes Description: JATC's math teacher always gives the class some interesting math ...
分类:
其他好文 时间:
2018-11-19 23:05:24
阅读次数:
388
题目:设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。 四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示。用SQL语句创建四个表并完成相关题目。 表1-1数据库的表结构 表(一 ...
分类:
数据库 时间:
2018-11-19 11:08:16
阅读次数:
187
一、applicationContext.xml配置 二、META-INF/spring/mybatis-config.xml 三、注解MyBatisRepository 四、Dao类配置 ...
分类:
编程语言 时间:
2018-11-14 21:05:43
阅读次数:
213
(1)全文的总结, 告诉老师这封信是做什么的.The summary of the letter to tell teacher what you are going to tell him. (2)简述自己为什么做了不好的事情.Summarizing the reasone. (3)写出补救措施. ...
分类:
其他好文 时间:
2018-11-13 02:43:22
阅读次数:
226
In this lesson you will learn to describe what you have. STARTER Do you have a ...? # 你有...吗? car brother/sister job hobby favorite song Tell your tut ...
分类:
其他好文 时间:
2018-11-13 00:11:19
阅读次数:
174
编辑: $('#Teacher').find('option').each(function(){ $(this).attr('selected',$(this).val()==data.tid); }); $('#bookType').next().children().eq(0).childre ...
分类:
其他好文 时间:
2018-11-11 21:02:46
阅读次数:
115
困难是一位严厉的老师,他产生于克服困难的努力中。 # # # class Page:# def __init__(self,lst,pagesize):# self.lst =lst# self.pagesize = pagesize## def start(self,a):# return a## ...
分类:
其他好文 时间:
2018-11-09 00:02:29
阅读次数:
138
一、类与类之间的关系 1.依赖关系 在方法中给方法传递一个对象。此时类与类的关系是最轻的 练习: class DaXiang(): def open(self, thing): print('大象') thing.op() print('打开%s' % thing.name) def zhuang( ...
分类:
编程语言 时间:
2018-11-08 21:56:00
阅读次数:
210