上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 右键要查询的文件 -- team -- show local history 显示 修改历史窗口 选择修改历史中一条记录 -- 右键 --Compare current with local 显示文件对比 阅读全文
posted @ 2016-08-02 13:56 蔡昊 阅读(3242) 评论(0) 推荐(0) 编辑
摘要: 黑色星号 : 文件被改了就会出现黑色信号 红色方块: 资源同步后,提示资源有冲突 绿色十字: 新增文件 阅读全文
posted @ 2016-08-02 11:15 蔡昊 阅读(342) 评论(0) 推荐(0) 编辑
摘要: SELECT INTO 和 INSERT INTO SELECT 两种表复制语句 SELECT INTO 和 INSERT INTO SELECT 两种表复制语句 Insert是T-sql中常用语句,Insert INTO table(field1,field2,...) values(value1 阅读全文
posted @ 2016-07-30 23:57 蔡昊 阅读(5848) 评论(0) 推荐(0) 编辑
摘要: 点击 eclipse - windown -> preferences > git 在git选项里有timeout ,默认30改成300即可 阅读全文
posted @ 2016-07-30 22:11 蔡昊 阅读(255) 评论(0) 推荐(0) 编辑
摘要: LENGTH 函数 ##查询有邀请人的记录数 684SELECT count(*)from u_userinfoWHERE LENGTH(invitememberid) > 0 阅读全文
posted @ 2016-07-29 16:15 蔡昊 阅读(185) 评论(0) 推荐(0) 编辑
摘要: # 查询分组数 SELECT count(*) from (SELECT count(*) as countnum from u_userinfoWHERE LENGTH(invitememberid) > 0GROUP BY memberid ) t 阅读全文
posted @ 2016-07-29 16:11 蔡昊 阅读(793) 评论(0) 推荐(0) 编辑
摘要: SELECT uuif.nickname as nickname , uuif.userpicurl as userpicurl, SUM(ggr.giftnum) as giftnum, #分组统计 ggr.sendmemberid as memberidfrom g_gift_reocrd gg 阅读全文
posted @ 2016-07-26 15:09 蔡昊 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 将url的属性设置为Empty String,解决 阅读全文
posted @ 2016-07-21 17:38 蔡昊 阅读(357) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Map<String, String> map = new HashMap<String, String>(); map.put("1", "value1"); map.put("2", "value2"); map. 阅读全文
posted @ 2016-07-21 10:26 蔡昊 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #插入或更新,依据唯一建判断INSERT INTO u_userinfo (memberid,nickname,userpicurl,sex) VALUES (1010,'楚留香62','http://111',0) ON DUPLICATE KEY UPDATE nickname ='楚留香62' 阅读全文
posted @ 2016-07-19 16:35 蔡昊 阅读(661) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页