1、主库准备工作 Host IP DB_NAME DB_UNIQUE_NAME Net Service Name(网络服务名) 主库192.168.137.128 ORCLDB WENDING db_wending 备库192.168.137.129 ORCLDB PHYSTDBY db_physt ...
分类:
数据库 时间:
2021-06-07 20:39:51
阅读次数:
0
我有两个集合,文章和评论,评论中的文章是文章中_id的外键. db.collection('article').aggregate( [ { $lookup: { from: "comments", localField: "_id", foreignField: "articleId", as: ...
分类:
数据库 时间:
2021-06-07 20:35:52
阅读次数:
0
SqlSugar 学习 记录 1. 多表查询 三表查询 int total = 0; var list = db.Queryable<SYS_User_UserGroup, SYS_User, SYS_UserGroup>((a, b, c) => new object[] { JoinType.L ...
分类:
数据库 时间:
2021-06-07 20:34:16
阅读次数:
0
db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:
数据库 时间:
2021-06-07 20:09:12
阅读次数:
0
import redisr = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,db=4)r = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,d ...
分类:
编程语言 时间:
2021-06-06 19:33:19
阅读次数:
0
模型类 from app.extensions import db??# 商品: 商品属于分类# 分类 分类反向查询商品class Cate(db.Model): __tablename__ = 'tb_cate' id = db.Column(db.Integer, primary_key=Tru ...
分类:
其他好文 时间:
2021-06-06 19:22:13
阅读次数:
0
Django实现MySQL读写分离 1. 增加slave数据库的配置 DATABASES = { 'default': { # 写(主机) 'ENGINE': 'django.db.backends.mysql', # 数据库引擎 'HOST': '192.168.103.158', # 数据库主机 ...
分类:
数据库 时间:
2021-06-06 19:02:54
阅读次数:
0
class Term(models.Model): class Meta: db_table = 'term' tid = models.BigAutoField(primary_key=True, null=False, help_text='终端唯一ID') ...
分类:
其他好文 时间:
2021-06-05 18:37:35
阅读次数:
0
SQL null 值 NULL函数 coalesce 接合,合并 SQL通用数据类型 DB数据类型 character varying 不同 integer DECIMAL(p,s) decimal numeric real stamp 邮票 印 interval 间隔 休息时间 mutiset 多 ...
分类:
其他好文 时间:
2021-06-05 18:23:54
阅读次数:
0
物理备份: 冷备份:cp tar 逻辑备份: mysqldump mysqldump:是MySQL的客户端命令,通过mysql协议连接至mysql服务器进行备份 -A, --all-databases #备份所有数据库,含create database -B, --databases db_name ...
分类:
数据库 时间:
2021-06-05 17:33:01
阅读次数:
0