上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页

2018年5月31日

jquery节点数据查找

摘要: 方式1(推荐): var copmany_id=$(this).parents('td').siblings('.company-name').find('a').attr('company_id'); 方式2: var copmany_id=$(this).parents('tr').find('.company-name').find('a').attr("company_id"... 阅读全文

posted @ 2018-05-31 15:52 ziyi_ang 阅读(101) 评论(0) 推荐(0)

2018年5月14日

文档配置管理

摘要: redmine 阅读全文

posted @ 2018-05-14 16:35 ziyi_ang 阅读(98) 评论(0) 推荐(0)

hadoop 整理

摘要: jdk安装:https://www.linuxidc.com/Linux/2016-09/134941.htm java下载:http://www.oracle.com/technetwork/java/javase/downloads/index.html hadoophttps://blog.c 阅读全文

posted @ 2018-05-14 16:34 ziyi_ang 阅读(81) 评论(0) 推荐(0)

2018年5月6日

thinkPHP 5 nginx 部署时,只跳转首页问题

摘要: 转自:https://blog.csdn.net/qq_18353611/article/details/79428270 阅读全文

posted @ 2018-05-06 09:05 ziyi_ang 阅读(268) 评论(0) 推荐(0)

2018年5月4日

linux shell脚本如果不存在创建文件夹

摘要: date_str=`date +%Y%m%d` dir=/root/crontab/log function run_mkcurrent_dir(){ my_dir="$dir/$date_str" if [ ! -d "$my_dir" ]; then echo "创建文件夹" mkdir $my_dir else echo "文件夹已存在" ... 阅读全文

posted @ 2018-05-04 11:21 ziyi_ang 阅读(13755) 评论(1) 推荐(0)

2018年4月28日

在Mysql中巧用update和join、count()更新统计字段

摘要: 转自:http://blog.sina.com.cn/s/blog_5f66526e0100lef5.html 假设有表main_user(id,user,name,pass,total_message),其中total_message字段为关联表main_r_user_message(id,mes 阅读全文

posted @ 2018-04-28 09:45 ziyi_ang 阅读(1603) 评论(0) 推荐(0)

2018年4月20日

PHP二维数组按照指定的字段排序的函数

摘要: http://www.thinkphp.cn/code/2044.html 阅读全文

posted @ 2018-04-20 17:51 ziyi_ang 阅读(948) 评论(0) 推荐(0)

2018年4月19日

实用存储过程

摘要: 方式一: 方式二:使用游标存储过程 随机抽查SQL: 阅读全文

posted @ 2018-04-19 10:28 ziyi_ang 阅读(146) 评论(0) 推荐(0)

2018年4月14日

最快得到MYSQL两个表的差集

摘要: http://www.dewen.net.cn/q/15423 Mysql里不外乎就是 子查询 和 连接 两种方式. 设第一个表为table1, 第二个为table2, table1包含table2. sql为: 高性能mysql里有类似的例子, 见 "When a correlated subqu 阅读全文

posted @ 2018-04-14 10:44 ziyi_ang 阅读(6102) 评论(0) 推荐(0)

2018年4月12日

MySQL中出现Access denied for user '**'@'localhost' (using password: YES)

摘要: https://blog.csdn.net/love_taylor/article/details/77198850 第一:当出现Access denied for user 'root'@'localhost' (using password: YES)解决方案: 1、打开MySQL目录下的my. 阅读全文

posted @ 2018-04-12 22:19 ziyi_ang 阅读(27602) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页

导航