上一页 1 2 3 4 5 6 ··· 46 下一页
摘要: 建表语句 create table user_info_replace ( id bigint unsigned auto_increment primary key, user_name varchar(32) not null, age smallint default 0 null, addr 阅读全文
posted @ 2023-01-13 19:21 bf378 阅读(426) 评论(0) 推荐(0) 编辑
摘要: https://dev.mysql.com/doc/refman/8.0/en/replace.html 阅读全文
posted @ 2023-01-13 18:48 bf378 阅读(43) 评论(0) 推荐(0) 编辑
摘要: https://www.alibabacloud.com/blog/improving-redis-performance-through-multi-thread-processing_594150 阅读全文
posted @ 2023-01-13 15:01 bf378 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 使用参数:--no-ensure-ascii cat job_config.json | python -m json.tool --no-ensure-ascii > job_config_format.json 具体查询本机:/usr/XXXXX/pythonXXXXX/json/tool.py 阅读全文
posted @ 2023-01-06 12:23 bf378 阅读(519) 评论(0) 推荐(0) 编辑
摘要: MySQL基础属性查询 查询事务提交机制 mysql> select @@autocommit ; + + | @@autocommit | + + | 0 | + + 1 row in set (0.00 sec) 0 是手动提交,1是自动提交。 事务隔离级别(默认是可重复读) mysql> se 阅读全文
posted @ 2022-12-30 20:44 bf378 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 查询: show variables like '%group_concat_max%' ; 或者 select @@group_concat_max_len ; 设置: set session group_concat_max_len = 10240; 参见:https://stackoverfl 阅读全文
posted @ 2022-12-29 15:55 bf378 阅读(510) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/9354022/inno-db-isolation-levels-and-locking 阅读全文
posted @ 2022-12-28 10:25 bf378 阅读(49) 评论(0) 推荐(0) 编辑
摘要: show create table user_info_merge_tree_dt; CREATE TABLE default.user_info_merge_tree_dt ( `id` Int64, `name` String, `dt` Date ) ENGINE = ReplacingMer 阅读全文
posted @ 2022-12-16 21:41 bf378 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 对于一个数据库表column 例如长度name varchar(8) 当用insert长度超过8的时候一般会报错,但有时候也会阶段报错。那具体跟什么有关系呢? 其实就是sql_mode的配置有关,具体结论如下: 1、sql_mode如果有STRICT_TRANS_TABLES这个配置项则会严格控制长 阅读全文
posted @ 2022-11-18 19:12 bf378 阅读(1283) 评论(0) 推荐(0) 编辑
摘要: The Request Payload - or to be more precise: payload body of a HTTP Request is the data normally send by a POST or PUT Request. It's the part after th 阅读全文
posted @ 2022-11-15 16:11 bf378 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 46 下一页