
mysql
陆文门虎
这个作者很懒,什么都没留下…
展开
-
mysql存储过程
存过原创 2022-12-05 16:29:07 · 377 阅读 · 0 评论 -
mysql 查询出表字段的属性
column_comment 字段说明,column_type 字段类型,COLUMN_NAME 字段名,column_key 约束。原创 2022-12-02 16:08:12 · 1215 阅读 · 0 评论 -
java执行sql ddl
java执行sql ddl。原创 2022-11-09 10:43:52 · 529 阅读 · 0 评论 -
sql select执行顺序
SQL语句的执行顺序:from-----where------group by------having ----select-----order by。SQL语句的编写顺序:select ----from---- where---- group by ----having ----order by。原创 2022-11-09 10:00:18 · 186 阅读 · 0 评论 -
linux mycat全局序列
linux mycat全局序列原创 2022-07-04 14:24:02 · 156 阅读 · 0 评论 -
linux mycat mysql 水平拆分——分表
linux mycat mysql 水平拆分——分表原创 2022-07-01 17:43:43 · 551 阅读 · 0 评论 -
linux mycat mysql 垂直拆分——分库
linux mycat mysql 垂直拆分——分库原创 2022-06-30 16:35:07 · 320 阅读 · 0 评论 -
linux mycat mysql 搭建双主双从读写分离
linux mycat 搭建双主双从读写分离原创 2022-06-30 10:07:20 · 168 阅读 · 0 评论 -
linux mysql搭建双主双从
linux mysql搭建双主双从原创 2022-06-28 17:54:48 · 590 阅读 · 0 评论 -
搭建mysql 主从复制The slave I/O thread stops because master and slave have equal MySQL server UUIDs
mysql 搭建主从复制 报错:Last_IO_Error: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server UUIDs; these UUIDs must be different for replication to work.具体原因:是因为两台服务器是克隆出来,uuid是一样的启动mysql,然后查询重启mysql......原创 2022-06-24 17:42:01 · 604 阅读 · 0 评论 -
linux mysql 配置一主一从
linux mysql 配置一主一从原创 2022-06-24 17:33:36 · 500 阅读 · 0 评论 -
mysql查询某字段在哪个表中
mysql查询某字段在哪个表中select table_schema,table_name from information_schema.columns where column_name = '字段名'table_schema 数据库名称table_name 表名column_name = ‘字段名’(要查询的列)原创 2022-02-21 15:40:23 · 668 阅读 · 0 评论 -
java批量插入数据
java批量插入数据1.封装jdbc工具类package com.vcredit.jdev.base.util;import java.io.InputStream;import java.sql.*;import java.util.Properties;public class JDBCUtils { /** * @return * @throws Exception * @Description 获取数据库的连接 */ pu原创 2022-02-15 17:09:44 · 1590 阅读 · 0 评论 -
Row size too large. The maximum row size for the used table type, not counting BLOBs, is 6553
mysql 建表 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs;Row size too large. The maximum row size for the us原创 2022-01-12 14:10:10 · 12311 阅读 · 0 评论 -
Linux下CentOS7安装MySQL5.7
linux 安装mysql原创 2022-01-12 11:35:20 · 269 阅读 · 0 评论