03 2021 档案
摘要:在使用left join时,on and与on where条件的区别: 1、on条件是在生成临时表时使用的条件,不管on中的条件是否为真,都会返回左边中的记录。(实际上左连接中如果and语句是对左表进行过滤的,那么不管真假都不起任何作用。如果是对右表过滤的,那么左表所有记录都返回,右表筛选以后再与左
阅读全文
摘要:1.设置 vim /etc/my.cnf 末尾新增 [mysqld] local-infile = 1 2.查看 SHOW GLOBAL VARIABLES LIKE '%local%';
阅读全文
摘要:public static string GetFileSize(string value) { if (string.IsNullOrWhiteSpace(value)) return value; var size = Convert.ToDouble(value); var units = n
阅读全文
摘要:一、安装依赖1.1 安装tiff、png、gif等依赖 dnf -y install automake autoconf libtool make gcc gcc-c++ dnf --enablerepo=PowerTools -y install giflib-devel dnf --enable
阅读全文
摘要:1.全拼音 public static string ToPinyin(this string msg, bool islower=true) { string result = string.Empty; msg= Regex.Replace(msg, @"[^\u4e00-\u9fa5]", s
阅读全文
摘要:CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("zh-CN", true) { DateTimeFormat = { ShortDatePattern = "yyyy-MM-dd", FullDateTimePattern = "
阅读全文
摘要:一、安装 1、选择安装源(二选一) 1.1 最新版安装 wget https://repo.mysql.com/mysql80-community-release-el8-4.noarch.rpm rpm -ivh mysql80-community-release-el8-4.noarch.rpm
阅读全文