摘要: 【方案1】 一、my.ini文件加入配置,然后重启mysql服务 innodb_large_prefix=1 二、mysql 登陆运行命令 登录自己的mysql的方法: 1.在D:\Program Files\MySQL\MySQL Server 5.7\bin路径下运行命令行, 2.登录:mysq 阅读全文
posted @ 2024-11-14 17:02 花田007 阅读(12) 评论(0) 推荐(0) 编辑
摘要: // 通过选择器获取所有选中的复选框 var selectedValues = $('input[name="xxx"]:checked').map(function(){ return this.value; }).get(); // 返回一个包含所有选中复选框的值的数组 console.log( 阅读全文
posted @ 2024-07-22 16:34 花田007 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wujian_csdn_csdn/article/details/106218142 阅读全文
posted @ 2024-07-02 10:27 花田007 阅读(4) 评论(0) 推荐(0) 编辑
摘要: $(function(){ $('#datetimepicker').datetimepicker('show'); }); 阅读全文
posted @ 2024-06-13 11:33 花田007 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u011033906/article/details/98043369 阅读全文
posted @ 2024-06-13 10:06 花田007 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/676214659 阅读全文
posted @ 2024-06-12 09:56 花田007 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/nidimyger/article/details/129033042 阅读全文
posted @ 2024-03-20 10:34 花田007 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_48726994/article/details/134196961 阅读全文
posted @ 2024-03-12 09:10 花田007 阅读(8) 评论(0) 推荐(0) 编辑
摘要: select t.id_ from act_ru_task t where t.proc_inst_id=''; --查询出上面的taskid作为条件(千万不要直接用proc_inst_id直接查询下面的表)修改即可 select t.user_id_ from act_ru_identitylin 阅读全文
posted @ 2024-02-23 10:18 花田007 阅读(222) 评论(0) 推荐(0) 编辑
摘要: select * from act_ru_task t where sysdate - to_date(to_char(t.create_time_,'yyyy-mm-dd'),'yyyy-mm-dd')>14 其中t.create_time_字段格式:timestamp(6) 阅读全文
posted @ 2024-02-02 17:57 花田007 阅读(7) 评论(0) 推荐(0) 编辑