20199301 2019-2020-2 《网络攻防实践》 综合实践 论文信息 Improved Group Off-the-Record Messaging (基于OTR协议的安全传输方法) Hong Liu Department of Computing and Information Scie ...
分类:
其他好文 时间:
2020-07-04 01:12:11
阅读次数:
89
1、用语句创建一个部门表T_DEPARTMENT,包含字段:主键、部门代码、部门名称、创建人、创建时间。 create table 表名 (字段设定列表); CREATE TABLE T_DEPARTMENT( ID NUMBER PRIMARY KEY, DEPARTMENTCODE VARCHA ...
分类:
数据库 时间:
2020-06-30 21:00:47
阅读次数:
75
本节重点: 多表连接查询 符合条件连接查询 子查询 准备工作:准备两张表,部门表(department)、员工表(employee) create table department( id int, name varchar(20) ); create table employee( id int ...
分类:
其他好文 时间:
2020-06-13 23:45:37
阅读次数:
87
报错:No cache could be resolved for 'Builder[public abstract com.example.cache.generate.Department com.example.cache.generate.DepartmentDao.selectByPrim ...
分类:
系统相关 时间:
2020-05-25 00:27:12
阅读次数:
315
连表查询 总是在连接的时候创建一张大表,里面存放的是两张表的笛卡尔积 在根据条件进行筛选就可以了 select * from department,employee where department.id = employee.dep_id; 当有相同的字段名时候需要制定表名。 select * f ...
分类:
其他好文 时间:
2020-05-18 14:11:01
阅读次数:
68
1.NOT IN: mysql> select * from teacher; + + + + + + + | tea_num | tea_name | tea_sex | tea_birth | tea_prof | department | + + + + + + + | 0435 | LiMe ...
分类:
其他好文 时间:
2020-04-12 11:01:59
阅读次数:
80
-- 1 查询表中单个字段 SELECT `last_name` FROM `employees`; -- 2 查询表中多个字段 SELECT `last_name`,`email`,`department_id` FROM `employees`; # 3.查询表中所有字段 SELECT * FR ...
分类:
数据库 时间:
2020-04-04 19:08:06
阅读次数:
134
记一次sql优化 原代码 INSERT INTO DataAnalysis_HrmDataHistory (estate,lockstate,delestate,creator,created,modifier,modified,name,employeeCode,sex,department_id ...
分类:
数据库 时间:
2020-04-01 17:56:29
阅读次数:
96
Very Deep Convolutional Networks for Large-Scale Image Recognition Karen Simonyan? & Andrew Zisserman+ Visual Geometry Group, Department of Engineerin ...
分类:
Web程序 时间:
2020-03-30 09:29:43
阅读次数:
135
4.1分表查询(等值连接) FROM employees,departments WHERE employees.department_id=departments.department_id; #案例3:查询员工名,工种号,工种名 #为表名起别名,简洁,一旦使用了别名,则不能使用原来的表名了。 S ...
分类:
其他好文 时间:
2020-03-29 18:08:29
阅读次数:
84