--文章表create table Article ( ID int primary key identity(1,1) not null --ID Title varchar(60) not null --标题 )--评论表create table Comment ( ID int primary ...
分类:
其他好文 时间:
2021-06-18 19:36:26
阅读次数:
0
Terminology “promise” is an object or function with a then method whose behavior conforms to this specification. “thenable” is an object or function t ...
分类:
其他好文 时间:
2021-06-18 19:35:32
阅读次数:
0
查询排序order by,正序asc 倒序desc。 分组查询group by,分组查询后筛选使用having; 默认值约束 default; 非空约束not null;注:非空字段必须赋值。唯一约束unique; 主键(非空+唯一)primary key; 自增长zerofill; 外键CONST ...
分类:
数据库 时间:
2021-06-17 16:52:03
阅读次数:
0
目录: STP概述 STP简介 生成树算法 选择根网桥 选择根端口 选择指定端口 BPDU(桥协议数据单元) STP利用BPDU选择根网桥 STP的收敛 VLAN与STP关系 MSTP多生成树协议华为命令 STP概述 交换网络环路的产生:广播风暴的形成多帧复制MAC地址紊乱 广播风暴:三个交换机两两 ...
分类:
编程语言 时间:
2021-06-16 17:35:16
阅读次数:
0
from sqlalchemy import Column,String,create_engine,MetaData from sqlalchemy.orm import sessionmaker from sqlalchemy.ext.declarative import declarative ...
分类:
数据库 时间:
2021-06-15 18:05:12
阅读次数:
0
Mongodb的ReplicaSet实验 标签(空格分隔): MongoDB 本文验证了:要保证mongodb RS集群在宕机情况下的可用性,至少需要三台机器。 目的 本实验的ReplicaSet集群为 1*Primary, 1*Secondary, n*Arbiter。 目的是为了验证: 三机环境 ...
分类:
数据库 时间:
2021-06-13 10:01:36
阅读次数:
0
背景知识 OSI模型 协议 设备或协议 特殊设备 身份识别 数据单位 应用层 表示层 数据加密 会话层 建立session 传输层 TCP/UDP/ICMP 网络层 路由器 三层交换机 基于IP地址 packate(数据包) 数据链路层 二层交换机 基于Mac地址 frame(帧) 物理层 网线、网 ...
分类:
其他好文 时间:
2021-06-09 10:31:07
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使?数据库 #创建?个库表 create table Student -- 学?表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-08 23:26:12
阅读次数:
0
#[数通]Mux Vlan配置 如图所示,VLAN10、20、99为公司内部网络,30为访客网络。 测试所有PC和服务器能否通信?(YES) 在S1上完成配置,使得VLAN10、20内部能够通信且能够访问服务器所在网络VLAN99(不考虑10和20之间互相通信),VLAN30作为访 客网络仅能访问服 ...
分类:
其他好文 时间:
2021-06-08 23:04:28
阅读次数:
0
1.vlan的基本概念 特点 隔离广播 方便管理 提高安全 vlan接口 Access接口 Trunk接口 2、Hybrid接口 2.1 特点 华为交换机接口默认为Hybrid模式 既可以实现Access接口的功能,也可以实现Trunk接口的功能 不借助三层设备即可实现跨VLAN通信和访问控制 Hy ...
分类:
其他好文 时间:
2021-06-07 20:23:14
阅读次数:
0