视图: 1.什么是视图 视图就是通过查询得到一张虚拟表,然后保存下来,下次直接使用即可 2.为什么要用视图 如果要频繁使用一张虚拟表,可以不用重复查询 3.如何使用视图 create view teacher2course as select * from teacher inner join co ...
分类:
数据库 时间:
2019-12-17 20:24:48
阅读次数:
95
1.视图: 视图就是通过查询得到一张虚拟表,然后保存下来,下次直接使用即可 (视图就是查询得到的虚拟表) 注意:1、在硬盘中,视图只有表结构文件,没有表数据文件,数据来源于原始表 2、视图一般只用于查询,一般不修改表中的数据,在公司一般不使用视图 1.创建视图 create view teacher ...
分类:
数据库 时间:
2019-12-17 17:57:39
阅读次数:
152
# 内置的类方法 和 内置的函数之间有着千丝万缕的联系 # 双下方法 # obj.__str__ str(obj) # obj.__repr__ repr(obj) # class Teacher: # def __init__(self,name,salary): # self.name = na ...
分类:
其他好文 时间:
2019-12-16 13:33:08
阅读次数:
83
表名和字段 –1.学生表 Student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 –2.课程表 Course(c_id,c_name,t_id) – –课程编号, 课程名称, 教师编号 –3.教师表 Teacher(t_id,t_name) ...
分类:
数据库 时间:
2019-12-13 21:54:48
阅读次数:
86
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> typedef struct _Ateacher { int id; char *name; char **stu; }Teacher_t; ...
分类:
编程语言 时间:
2019-12-12 21:16:22
阅读次数:
111
先写一下3这种遍历方法 for循环 List<Teacher> list = new ArrayList<>(); list.add(new Teacher("张三",21)); list.add(new Teacher("李四",28)); list.add(new Teacher("王五",18 ...
分类:
其他好文 时间:
2019-12-11 21:18:32
阅读次数:
68
需求: 每个老师都只能看到自己的课程 # models.py from django.contrib.auth.models import AbstractUser class UserProfile(AbstractUser): ...... class Courses: teacher = mo ...
分类:
其他好文 时间:
2019-12-11 19:19:26
阅读次数:
223
C++基础教程 作者:lanneret 时间:2018-06-23 作者:lanneret 时间:2018-06-23 1、基础语法 < >引用的是编译器的类库路径里面的头文件 " "引用的是你程序目录的相对路径中的头文件 2、命名空间 1 namespace; 2 #include<iostrea ...
分类:
编程语言 时间:
2019-12-08 15:53:53
阅读次数:
136
一对多、多对一 Country类 @Entity @Table(name = "Country") public class Country { @Id //sequence identity @GeneratedValue(strategy = GenerationType.IDENTITY) p ...
分类:
编程语言 时间:
2019-12-07 19:35:56
阅读次数:
97
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 6 struct Student 7 { 8 int s_id; 9 string s_name; 10 int s_phonenum; 11 }; 12 13 st ...
分类:
其他好文 时间:
2019-12-07 10:30:10
阅读次数:
90