随笔分类 - 数据库
摘要:redis-server.exe redis.windows.conf https://blog.csdn.net/csdn122345/article/details/145544470
阅读全文
摘要:https://help.aliyun.com/zh/milvus/user-guide/attu-user-guide
阅读全文
摘要:SELECT t.COLUMN_NAME AS '字段名', t.COLUMN_TYPE AS '数据类型', CASE IFNULL(t.COLUMN_DEFAULT, 'Null') WHEN '' THEN '空字符串' WHEN 'Null' THEN 'NULL' ELSE t.COLUM
阅读全文
摘要:# 0. 参考 https://www.bilibili.com/video/BV1bJ411x7mq https://www.runoob.com/mongodb https://www.runoob.com/mongodb/mongodb-java.html # 1. mongodb特点及其业务
阅读全文
摘要:https://blog.csdn.net/weixin_52938172/article/details/123929866 https://www.cnblogs.com/yppah/p/15817560.html docker安装两个mysql docker run \ --name mysq
阅读全文
摘要:mysql集群结构 主库(云服务器centos7)配置 [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_sch
阅读全文
摘要:之前学习sc、docker时实现的mysql主从集群==https://www.cnblogs.com/yppah/p/16226505.html== 主从复制原理 理想化了(win+centos搭建主从失败记录) https://www.cnblogs.com/yppah/p/17061431.h
阅读全文
摘要:files/hm-mysql/MySQL-2-advance.pdf · yppah/apibooks - 码云 - 开源中国 (gitee.com) 1. 存储引擎 1.1 mysql结构体系 连接层:处理客户端连接,授权认证校验权限等操作 服务层:核心,sql接口、sql解析、sql优化等所有跨
阅读全文
摘要:1. 约束 # 约束 CREATE TABLE tb_user2( id int AUTO_INCREMENT PRIMARY KEY COMMENT 'ID唯一标识', name varchar(10) NOT NULL UNIQUE COMMENT '姓名', age int COMMENT '
阅读全文
摘要:https://gitee.com/yub4by/apibooks/blob/master/files/hm-mysql/MySQL-1-base.pdf 1. DDL & DML -- navicat SHOW TABLES; DESC tb_user; SHOW CREATE TABLE tb_
阅读全文
摘要:0. https://blog.csdn.net/a23452/article/details/121367860 1. 以下参考https://blog.csdn.net/weixin_46273997/article/details/112977917 “自左连接”参考https://www.y
阅读全文