上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 39 下一页
摘要: 在使用left join时,on and与on where条件的区别: 1、on条件是在生成临时表时使用的条件,不管on中的条件是否为真,都会返回左边中的记录。(实际上左连接中如果and语句是对左表进行过滤的,那么不管真假都不起任何作用。如果是对右表过滤的,那么左表所有记录都返回,右表筛选以后再与左 阅读全文
posted @ 2021-03-27 17:59 b̶i̶n̶g̶.̶ 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.设置 vim /etc/my.cnf 末尾新增 [mysqld] local-infile = 1 2.查看 SHOW GLOBAL VARIABLES LIKE '%local%'; 阅读全文
posted @ 2021-03-16 19:53 b̶i̶n̶g̶.̶ 阅读(111) 评论(0) 推荐(0) 编辑
摘要: public static string GetFileSize(string value) { if (string.IsNullOrWhiteSpace(value)) return value; var size = Convert.ToDouble(value); var units = n 阅读全文
posted @ 2021-03-09 12:04 b̶i̶n̶g̶.̶ 阅读(181) 评论(0) 推荐(1) 编辑
摘要: 一、安装依赖1.1 安装tiff、png、gif等依赖 dnf -y install automake autoconf libtool make gcc gcc-c++ dnf --enablerepo=PowerTools -y install giflib-devel dnf --enable 阅读全文
posted @ 2021-03-08 19:36 b̶i̶n̶g̶.̶ 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1.全拼音 public static string ToPinyin(this string msg, bool islower=true) { string result = string.Empty; msg= Regex.Replace(msg, @"[^\u4e00-\u9fa5]", s 阅读全文
posted @ 2021-03-05 11:59 b̶i̶n̶g̶.̶ 阅读(491) 评论(0) 推荐(0) 编辑
摘要: CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("zh-CN", true) { DateTimeFormat = { ShortDatePattern = "yyyy-MM-dd", FullDateTimePattern = " 阅读全文
posted @ 2021-03-03 20:06 b̶i̶n̶g̶.̶ 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 一、安装 1、选择安装源(二选一) 1.1 最新版安装 wget https://repo.mysql.com/mysql80-community-release-el8-4.noarch.rpm rpm -ivh mysql80-community-release-el8-4.noarch.rpm 阅读全文
posted @ 2021-03-01 16:18 b̶i̶n̶g̶.̶ 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 1. 下载elasticsearch curl -L -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.11.1-linux-x86_64.tar.gz tar -xzvf elasticsearch-7. 阅读全文
posted @ 2021-02-20 09:58 b̶i̶n̶g̶.̶ 阅读(175) 评论(0) 推荐(0) 编辑
摘要: https://motrix.app/zh-CN/ 阅读全文
posted @ 2021-02-19 18:01 b̶i̶n̶g̶.̶ 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 一、安装erlang 1、首先安装erlang 环境,因为rabbitmq是基于erlang开发的 #添加仓库 curl -s https://packagecloud.io/install/repositories/rabbitmq/erlang/script.rpm.sh | sudo bash 阅读全文
posted @ 2021-02-19 16:02 b̶i̶n̶g̶.̶ 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 39 下一页