上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: B Tree和B+Tree的概念可以参考以下几个帖子,重点记住为什么会采用B Tree(B tree/B+tree),而不采用二叉搜索树、红黑树等作为索引结构;以及记住B Tree和B+Tree之间的概念区别。 http://taop.marchtea.com/03.02.html http://b 阅读全文
posted @ 2017-02-23 09:55 Seekload 阅读(194) 评论(0) 推荐(0) 编辑
摘要: count( ) 对行数进行计算,包括NULL; count(column) 计算特定的列的值的行数,不包括NULL; count(1)这个用法和count( )的结果是一样的。 http://blog.csdn.net/qianweifeng123/article/details/51078144 阅读全文
posted @ 2017-02-22 13:18 Seekload 阅读(146) 评论(0) 推荐(0) 编辑
摘要: https://www.oschina.net/news/77354/http get post different http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2014/0404/1611.html 总结: Http定义了与服务器交互 阅读全文
posted @ 2017-02-19 21:30 Seekload 阅读(118) 评论(0) 推荐(0) 编辑
摘要: http://www.codetc.com/article 309 1.html http://blog.csdn.net/jesseyoung/article/details/38037543 https://www.kancloud.cn/kancloud/theory of mysql ind 阅读全文
posted @ 2017-02-19 11:53 Seekload 阅读(78) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/u013124721/article/details/55509313?locationNum=15&fps=1 http://designpatternsphp.readthedocs.io/zh_CN/latest/README.html http:// 阅读全文
posted @ 2017-02-18 11:42 Seekload 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 单例模式的主要作用就是保证面向对象程序设计中一个类只有一个实例对象存在,在很多操作中都会用到这种技术,比如,建立文件目录、数据库连接都会用到这种技术。 test(); 阅读全文
posted @ 2017-02-18 09:05 Seekload 阅读(107) 评论(0) 推荐(0) 编辑
摘要: http://www.ctolib.com/topics 21262.html http://cnn237111.blog.51cto.com/2359144/1284085 http://blog.csdn.net/ydxlt/article/details/50621821 http://www 阅读全文
posted @ 2017-02-17 10:55 Seekload 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 2. SESSION 与 COOKIE的区别是什么,请从协议,产生的原因与作用说明? Session是服务器端保存客户端状态信息的方案,一般保存在服务器端内存中,session超时时间在服务器端进行设置。 Cookie是客户端保存信息的方案,一般是以文件的形式进行保存,cookie清空时间是在客户机 阅读全文
posted @ 2017-02-15 00:02 Seekload 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 建表语句: CREATE TABLE ( int(11) NOT NULL AUTO_INCREMENT, varchar(150) NOT NULL DEFAULT '', varchar(150) NOT NULL DEFAULT '', int(11) NOT NULL DEFAULT '0' 阅读全文
posted @ 2017-02-14 10:49 Seekload 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 今天重新温习一遍mysql的知识 先来讲讲where、group by、having group by :是将记录中的数据,按照条件进行分组; having:是将分组后的数据加上条件筛选,区别于where分组前的筛选。 http://blog.csdn.net/eclipsexys/article/ 阅读全文
posted @ 2017-02-13 23:24 Seekload 阅读(3460) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页