摘要: #查询数据库各表的排序规则 SELECT TABLE_NAME,TABLE_COLLATION FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'database'; #查询要修改排序规则表的SQL语句 SELECT concat('ALTER 阅读全文
posted @ 2023-07-15 10:58 优六系统(Util6MIS+) 阅读(194) 评论(0) 推荐(0)
摘要: iis 设置ssl证书乱窜的解决方法: 选择iis站点>先导入证书 选择iis站点>编辑绑定>选择https站点>选中需要服务器名称指示 阅读全文
posted @ 2023-04-21 14:57 优六系统(Util6MIS+) 阅读(212) 评论(0) 推荐(0)
摘要: 如果没有加group by 则会出UserCount为0外其它都是null select a.*,count(b.ID) as UserCount from erp_role as a left join erp_user as b on a.ID=b.RoleId where 1=1 and a. 阅读全文
posted @ 2023-04-15 16:12 优六系统(Util6MIS+) 阅读(707) 评论(0) 推荐(0)
摘要: 1. 添加 “README.md” 文件到项目根目录 2. 在项目根目录中右键打开git客户端(git bash here),执行以下命令 git init #初始化cd existing_repo #进入项目目录git config --global user.email "username@em 阅读全文
posted @ 2023-04-04 14:43 优六系统(Util6MIS+) 阅读(81) 评论(0) 推荐(0)
摘要: sqlite统计两万条数据中json列的测试如下: JSON格式: {"a":1,"b":2,"c":3,"d":4,"e":[4,5,{"f":7}]} 测试结果: 耗时87毫秒汇总了2万条数据 阅读全文
posted @ 2023-03-09 10:12 优六系统(Util6MIS+) 阅读(96) 评论(0) 推荐(0)
摘要: sqlserver: #query SELECT SalesOrderNumber, OrderDate, JSON_VALUE(Info, '$.Customer.Name') AS CustomerName FROM Sales.SalesOrderHeader WHERE JSON_VALUE 阅读全文
posted @ 2023-02-22 15:17 优六系统(Util6MIS+) 阅读(174) 评论(0) 推荐(0)
摘要: chrome.contextMenus.create({ title: "Open frame in new tab", onclick: function(info, tab){ chrome.tabs.create({ url: info.frameUrl || info.pageUrl, in 阅读全文
posted @ 2023-02-03 10:50 优六系统(Util6MIS+) 阅读(466) 评论(0) 推荐(0)
摘要: chrome.browserAction.onClicked.addListener(function (tab) { //打开全页面 //window.open(chrome.extension.getURL('index.html')); //打开指定页面 window.open('http:/ 阅读全文
posted @ 2023-01-30 16:14 优六系统(Util6MIS+) 阅读(1030) 评论(0) 推荐(0)
摘要: 移除任务管理器中rdp 剪贴板监视程序,新建rdpclip.exe进程即可 阅读全文
posted @ 2022-12-30 17:10 优六系统(Util6MIS+) 阅读(517) 评论(0) 推荐(0)
摘要: 1.安装带iis的sdk 即dotnet-hosting-6.0.3-win.exe,安装完后iis模块中会有AspNetCoreModuleV2的模块即安装成功。 2.第一次部署站点时需要有web.config文件,所以需要将站点发布出来(发布>目标>文件夹),发布后目录中包含web.config 阅读全文
posted @ 2022-03-22 21:28 优六系统(Util6MIS+) 阅读(3073) 评论(0) 推荐(0)