一、多表关系介绍 1.多表之间具有哪些关系? 一对一关系 例:人和身份证 一个人只能有一张身份证,一张身份证只能对应一个人. 一对多/多对一关系 例:部门和员工 一个员工只能对应一个部门,一个部门可以对应多个员工. 多对多 例:学生与课程 一门课程可以被多个学生选择,一个学生可以选择多门课程. 2. ...
分类:
数据库 时间:
2020-05-17 00:46:55
阅读次数:
85
1.pom.xml springboot-2.3.0的 spring-boot-starter-web启动器好像不包含 spring-boot-starter-validation启动器,需要自己添加 <dependency> <groupId>org.springframework.boot</g ...
分类:
编程语言 时间:
2020-05-16 18:57:31
阅读次数:
89
在VS中 --> 项目 --> 项目属性 --> C/C++ --> 命令行 添加编译选项 /d1reportSingleClassLayoutB (B是你要查看的类名) 代码一:测试虚标的存在 /// /// @filename /// @author whao Luo /// @email ha ...
分类:
编程语言 时间:
2020-05-15 22:59:09
阅读次数:
176
表单类型 | 类型 | 使用示例 | 含义 | | | | | | **email** | <input type="email"> | 输入邮箱格式 | | **tel** | <input type="tel"> | 输入手机号码格式 | | **url** | <input type="url ...
分类:
Web程序 时间:
2020-05-15 15:49:14
阅读次数:
67
联系方式 姓名: 李刘玉 手机:18930729080 Email:1203517394@qq.com 微信号:xunyu535659456 个人信息 /男/ 本科/ 工作年限:4年 技术博客:https://www.cnblogs.com/liliuyu 期望职位:前端中级程序员 .前端高级开发 ...
分类:
其他好文 时间:
2020-05-15 15:47:33
阅读次数:
78
HTML5 拥有多个新的表单输入类型。这些新特性提供了更好的输入控制和验证。 本章全面介绍这些新的输入类型: color date datetime datetime-local email month number range search tel time url week 注意:并不是所有的主 ...
分类:
Web程序 时间:
2020-05-15 15:25:56
阅读次数:
64
Git配置:git config --global user.name "robbin" git config --global user.email "fankai@gmail.com"git config --global color.ui truegit config --global ali ...
分类:
其他好文 时间:
2020-05-15 09:39:47
阅读次数:
51
"""allure报告相关"""import osimport subprocessimport zipfileimport smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipa ...
分类:
其他好文 时间:
2020-05-14 15:21:23
阅读次数:
66
2.1在列表,字典,集合中根据条件筛选数据 1.过滤列表中的负数 通常使用迭代 from random import randintdata=data=[randint(-10,10) for _ in range(10)]res=[]for x in data: if x>=0: res.appe ...
分类:
编程语言 时间:
2020-05-14 01:15:32
阅读次数:
72
脚本内容 #!/bin/env python #coding:utf-8 import smtplib from email.mime.text import MIMEText from sys import argv mailto_list=[] mail_host="hwsmtp.qiye.16 ...
分类:
其他好文 时间:
2020-05-13 14:09:28
阅读次数:
66