码迷,mamicode.com
首页 >  
搜索关键字:mysqlbinlog mixed row statement    ( 16121个结果
oracle cursor
Oracle will generate something called cursor after it parse an statement. This thing--cursor will be stored in Library cache, if next time you need to...
分类:数据库   时间:2014-05-10 01:02:22    阅读次数:579
HBase中的时间维度
HBase是一个类Bigtable系统,按照Google的论文对 Bigtable的定义是“一种稀疏的,分布式的,持久的多为维度的有序Map。这个Map由row key,column key和timestamp做为索引,Map中的值是连续的byte数组”。HBase的多维度,包括table和colu...
分类:其他好文   时间:2014-05-10 00:30:36    阅读次数:357
不带查询条件的分页
SELECT * FROM ( SELECT ROW_NUMBER() OVER(ORDER BY ca.PraiseNum desc) as RowID ,ca.[ArticleId] ...
分类:其他好文   时间:2014-05-09 13:17:14    阅读次数:409
mysql 触发器语法详解
1、创建Mysql触发器: 语法: CREATE TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW BEGIN trigger_stmt //语句块 END; CR...
分类:数据库   时间:2014-05-09 10:52:24    阅读次数:478
Hbase与RDBMS
hbase与传统关系数据库区别hbase适合于非结构化数据存储的数据库。介于Map Entry 和 DB row之间的一种数据存储方式。1. 数据类型: HBase只有简单的字符串类型,它只保存字符串所有的类型都是交给用户自己处理。关系型数据库可以选择类型2. 数据操作: HBase操作只有很简单的...
分类:数据库   时间:2014-05-09 09:51:14    阅读次数:444
Leetcode:Set Matrix Zeroes
戳我去解题Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.这题还是很简单的,就是有点坑,遍历矩阵的时候,每遇到0的时候,我们不能立即将所在行和列置0,否则,到最后矩阵所有...
分类:其他好文   时间:2014-05-09 08:51:57    阅读次数:253
Leetcode:Search a 2D Matrix
戳我去解题Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted f...
分类:其他好文   时间:2014-05-09 08:27:24    阅读次数:241
【web开发】☆★之利用POI操作Excel表格系列教程【11】单元格合并
【web开发】☆★之利用POI操作Excel表格系列教程【11】单元格合并packagecsg.xiaoye.poidemo; importjava.io.FileOutputStream; importorg.apache.poi.hssf.usermodel.HSSFWorkbook; importorg.apache.poi.ss.usermodel.Cell; importorg.apache.poi.ss.usermodel.Row; importor..
分类:Web程序   时间:2014-05-09 07:15:59    阅读次数:321
sqlserver 触发器语法
语法:Trigger on an INSERT, UPDATE, or DELETE statement to a table or view (DML Trigger)CREATE TRIGGER [ schema_name . ]trigger_name ON { table | view } ...
分类:数据库   时间:2014-05-09 05:18:18    阅读次数:483
普元EOS中命名sql数据集
所谓的命名sql其实也就是数据库里的sql语句,普元EOS里做了一定的封装,以方便在程序中的使用。命名SQL的基本元素包括:1. parameterMap负责将对象属性映射成statement的参数。2. resultMap负责将结果集的列值映射成对象的属性值 3. (Mapped Statem.....
分类:数据库   时间:2014-05-09 03:49:56    阅读次数:2099
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!