CREATE PROCEDURE [dbo].[pro_common_pageList] ( @tab NVARCHAR(MAX) , 表名 @PrimaryKey VARCHAR(100) , --主键ID @strFld NVARCHAR(MAX) , --字段字符串 @strWhere NVA ...
分类:
数据库 时间:
2018-05-21 16:15:52
阅读次数:
216
一、定义: 聚簇索引也叫簇类索引,是一种对磁盘上实际数据重新组织以按指定的一个或多个列的值排序。由于聚簇索引的索引页面指针指向数据页面,所以使用聚簇索引查找数据几乎总是比使用非聚簇索引快。每张表只能建一个聚簇索引,并且建聚簇索引需要至少相当该表120%的附加空间,以存放该表的副本和索引中间页。 非聚 ...
分类:
数据库 时间:
2018-05-21 16:13:29
阅读次数:
264
1. Download the Debugging Tools for Windows from the Microsoft website We recommend you install WinDbg Preview as it offers more modern visuals, faste ...
分类:
数据库 时间:
2018-05-21 12:18:28
阅读次数:
368
1. Public String subString(int beginIndex) 2.public String substring(int beginIndex, int endIndex) 3.public String(char value[],int offset,int count) ...
分类:
其他好文 时间:
2018-05-20 14:23:08
阅读次数:
192
数据库知识点 1.数据库操作: 增:insert into 表名 values(值1,值2,值3) 删:delete 列名 from 表名 where 条件 改:update 表名 set =值 where表名=值 查:select * from username 全部 select name fr ...
分类:
数据库 时间:
2018-05-18 23:30:56
阅读次数:
241
Module: tf.image 这篇文章主要介绍TensorFlow处理图片这一块,这个模块和之前说过的文件I/O处理一样也是主要从python导过来的。 通过官方文档,我们了解到这个模块主要有一下这些个函数。 Functions adjust_brightness(...): Adjust th ...
分类:
其他好文 时间:
2018-05-17 11:56:36
阅读次数:
611
java1.8获取年份: int year = Calendar.getInstance().get(Calendar.YEAR); StringBuilder code = new StringBuilder(Integer.toString(year)); //两个时间之间的天数差: int l... ...
分类:
编程语言 时间:
2018-05-15 22:52:38
阅读次数:
236
背景:mysql数据库中有个日志表记录高达800多万,影响了mysql的正常业务访问,现需要清理三个月之前的所有数据,大概600多万 方法一:传统delete from xxx,传统,普通,效率底下,高数据清理容易搞垮数据库。 方法二:truncate,这个操作会把表中所有的数据给清除掉。(如果是要 ...
分类:
数据库 时间:
2018-05-15 15:56:25
阅读次数:
265
网页布局(layout)是CSS的一个重点应用。 布局的传统解决方案,基于盒状模型,依赖 display属性 + position属性 + float属性。它对于那些特殊布局非常不方便,比如,垂直居中就不容易实现。 2009年,W3C提出了一种新的方案 Flex布局,可以简便、完整、响应式地实现各种 ...
分类:
其他好文 时间:
2018-05-14 10:26:04
阅读次数:
198
POJ_1269_Intersecting Lines_求直线交点 Description We all know that a pair of distinct points on a plane defines a line and that a pair of lines on a plane ...
分类:
其他好文 时间:
2018-05-10 11:33:21
阅读次数:
129