码迷,mamicode.com
首页 >  
搜索关键字:oracle db server    ( 110809个结果
mongodb – 如何在$lookup(聚合)中将ObjectID转换为String
我有两个集合,文章和评论,评论中的文章是文章中_id的外键. db.collection('article').aggregate( [ { $lookup: { from: "comments", localField: "_id", foreignField: "articleId", as: ...
分类:数据库   时间:2021-06-07 20:35:52    阅读次数:0
Sql Sugar
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
jemeter Cannot create PoolableConnectionFactory (Could not crCannot create PoolableConnectionFactory (Could not create connection to database server.)
问题: Jemeter 使用 jdbc 连接 Mysql 8.0.17, 出现 Cannot create PoolableConnectionFactory (Could not crCannot create PoolableConnectionFactory (Could not create ...
分类:数据库   时间:2021-06-07 20:29:47    阅读次数:0
SQL Server查询表结构
SELECT (case when a.colorder=1 then d.name else null end) 表名, a.colorder 字段序号,a.name 字段名, (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then ...
分类:数据库   时间:2021-06-07 20:27:53    阅读次数:0
Oracle 的 sql*plus 记录
set pages 50000 set lines 800 col grp format a5 ...
分类:数据库   时间:2021-06-07 20:22:56    阅读次数:0
pymysql使用模板
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
1-Redis入门
概述 Redis是什么? Redis是一种基于键值对的NoSQL数据库 Redis(Remote Dictionary Server)即远程字典服务 是一个开源的ANSI C语言编写、支持网络、可基于内存也可以持久化的日志型、Key-Value数据库,并且提供多种语言的API。免费开源 Redis能 ...
分类:其他好文   时间:2021-06-06 19:44:25    阅读次数:0
FSLogix 漫游Profile 后,GPO 组策略不生效的解决办法。
dc server 2019 远程桌面服务器 server 2019 输入 gpresult /v 查看GPO 应用情况, 在安装FSLogix 的服务器上,键入注册表值,和 GPO 值。 FSLogix 注册表项:HKLM\SOFTWARE\FSLogix\Profiles\ 下的 DWORD G ...
分类:其他好文   时间:2021-06-06 19:43:49    阅读次数:0
Python_redis
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
flask中的关联关系:一对多
模型类 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
110809条   上一页 1 ... 19 20 21 22 23 ... 11081 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!