上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 43 下一页
摘要: 对比两表数据一样升序不一样的列 declare @tablename_mask varchar(50) set @tablename_mask='A表' declare @tableid int print @tablename_mask select @tableid=id from sysobj 阅读全文
posted @ 2022-04-13 16:22 三瑞 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 注意:server_name 多个域名时用空格隔开,否则可能报“could not build server_names_hash, you should increase server_names_hash_bucket_size”(两个域名使用443端口时) server { listen 80 阅读全文
posted @ 2022-04-04 09:52 三瑞 阅读(206) 评论(0) 推荐(0) 编辑
摘要: windows: 1、建一个Bat文件如下。 2、设置定时执行Bat方法:https://www.cnblogs.com/bmwchampion/archive/2010/08/21/autotimingexcutejob.html @echo off set basedir=%~dp0 set l 阅读全文
posted @ 2022-04-03 10:51 三瑞 阅读(30) 评论(0) 推荐(0) 编辑
摘要: -- 查询表注释 select table_schema, table_name, table_comment from information_schema.tables where table_schema = '数据库名' and table_name = '表名'; -- 查询表字段注释 s 阅读全文
posted @ 2022-04-01 10:01 三瑞 阅读(113) 评论(0) 推荐(0) 编辑
摘要: C# 会自动替换 变量 把形如 "{{varName}}" 替换成对应的数值 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Sy 阅读全文
posted @ 2022-03-31 16:27 三瑞 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 问题:html 锚点 点击后上面的导航栏被顶上去看不见了 原因:easyui 的属性 data-options="region:'center'" 导致问题,去掉则正常! 阅读全文
posted @ 2022-03-29 09:47 三瑞 阅读(135) 评论(0) 推荐(0) 编辑
摘要: ——修改表名 EXEC sp_rename '旧表名', '新表名' ——修改列名 EXEC sp_rename '表名.[旧列名]','新列名','COLUMN' 阅读全文
posted @ 2022-03-23 11:38 三瑞 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: 问题一: 1129 - Host '192.168.1.10' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' 解决方法:mysqladmin -uroot -P7506 -pte 阅读全文
posted @ 2022-03-21 10:56 三瑞 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 端口替换.bat @echo off Setlocal enabledelayedexpansion SET FIND_DIR=%~dp0 set st=7506 ::把替换字符串赋值给dt,这里举例是st->dt set dt=4506 ::循环bat文件只取文件名将文件名设置到s变量上 for 阅读全文
posted @ 2022-03-19 20:22 三瑞 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 备份数据库.bat @setlocal enabledelayedexpansion @echo off color f0 title 备份数据库 rem 下面为自定义参数可修改 set mysqlServiceName=MySQL4506 set mysqlPort=4506 set rootUs 阅读全文
posted @ 2022-03-19 11:11 三瑞 阅读(203) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 43 下一页