一、Reading Confucius is respected by most Chinese as the greatest teacher of all time. Perhaps the most important word he taught was "ren," which means ...
分类:
其他好文 时间:
2020-08-31 13:28:53
阅读次数:
75
根据老师表(teacher),老师任课关系表(teacher2class),课程表(class),通过表连接,得到老师的任课结构表,如下: select t.id, t.name, c.title from teacher t left join teacher2class t2c on t.id ...
分类:
数据库 时间:
2020-08-24 15:13:06
阅读次数:
132
多对一处理 如, 多个学生,对应一个老师 多个学生关联一个老师(多对一) 一个老师有很多学生(一对多) SQL: create table `teacher`( `id` int(10) not null , `name` varchar(30) default null, primary key( ...
分类:
其他好文 时间:
2020-08-12 15:56:00
阅读次数:
47
多对一; 测试环境导入lombok新建实体类Teacher,Student新建Mapper接口建立Mapper.XML文件在核心配置文件中绑定注册我们的MApper接口或者文件!【方式很多,随意选】测试查询是否成功!按照查询嵌套处理<!--思路: 1、查询所有的学生信息 2、根据查询出来的学生的id ...
分类:
其他好文 时间:
2020-07-26 19:37:53
阅读次数:
63
表架构 Student(S#,Sname,Sage,Ssex) 学生表 Course(C#,Cname,T#) 课程表 SC(S#,C#,score) 成绩表 Teacher(T#,Tname) 教师表 建表语句 CREATE TABLE student ( s INT, sname varchar ...
分类:
数据库 时间:
2020-07-24 09:54:10
阅读次数:
86
课上内容(Lesson) a fact n. 事实;实际;真相 take a nap (30-60min.) 睡午觉;小睡一下 # deep sleep a power nap(20 min.) 一个小盹 词汇(Key Word ) expert 专家 regular 规律 hardly 几乎不 r ...
分类:
其他好文 时间:
2020-07-10 09:34:53
阅读次数:
65
##1.多对一 实体类 //这里用到了lombok @Data public class Student { private int id; private String name; //学生需要关联一个老师! private Teacher teacher; } @Data public clas ...
分类:
其他好文 时间:
2020-07-08 23:11:05
阅读次数:
77
In this lesson you will learn to present a proposal. 在这节课中,你将学习如何提出一个建议。 课上内容(Lesson) (be)low an energy bargain(n.) n. 交易;便宜货;契约 haggle(v.) proposal(n ...
分类:
其他好文 时间:
2020-07-07 10:06:10
阅读次数:
59
dbbac.sh #!/bin/bash # db_user="teacher" db_password="123456" ftp_user="teacher" ftp_password="123456" ftp_host="192.168.199.230" dest_dir="/root/mysq ...
分类:
数据库 时间:
2020-07-06 13:03:48
阅读次数:
62
In htis lesson you will learn to talk about your uniqueness or obsessions. 在这堂课上,你将学习谈论你的独特性或痴迷(强迫症)。 课上内容(Lesson) uniqueness(n.) n. 独特性;独一无二;单值性 uniq ...
分类:
其他好文 时间:
2020-07-06 12:47:09
阅读次数:
53