加载中
MYSQL中取当前周/月/季/年的第一天与最后一天

#当年第一天: SELECT DATE_SUB(CURDATE(),INTERVAL dayofyear(now())-1 DAY); #当年最后一天: SELECT concat(YEAR(now()),'-12-31'); #当前week的第一天: select date_sub(curdate(...

2016/06/21 10:03
3.5K
nginx中php伪静态配置

###########################################隐藏index.php location / {     if (!-e $request_filename) {             ###一级目录下             r...

2015/06/18 12:11
1.8K
通过 IntelliJ IDEA 去 Debug Jar包

代码打成Jar之后,要如何进行Debug呢? 下面以 IDEA 来例进行说明: 1、在IntelliJ IDEA的run/debug configuration中增加一个remote类型的配置 2、以以下方式来启动 Jar包 $java -Xdebug -X...

2017/08/14 01:01
953
Installing Tomcat 8 on OS X 10.11 El Capitan

By far the easiest way to install and configure an Apache Tomcat server on a mac is using thehomebrew package management suite. If you’re not already using homebrew, you should...

Mysql批量修复表名

首先在mysql中运行以下sql语句: Select CONCAT( 'ALTER TABLE ', 表名, 'RENAME TO xxxx_', substring(表名,数字),';' ) FROM information_schema.tables Where table_name L...

2015/07/16 10:10
91
Grunt使用笔记

首先需要安装node.js才能用npm进行安装grunt,如何安装npm这里就不在叙述了。找下谷哥,度娘问下就知道 卸载(-g:全局) npm uninstall -g grunt 安装cli(-g:全局) npm install -g grunt-c...

2015/07/20 08:53
84

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部