码迷,mamicode.com
首页 >  
搜索关键字:row    ( 12323个结果
Oracle笔记 十、PL/SQL存储过程
--create or replace 创建或替换,如果存在就替换,不存在就创建create or replace procedure pis cursor c is select * from dept2 for update;begin for row_record in c loop if (...
分类:数据库   时间:2014-10-28 00:29:31    阅读次数:268
Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1].Note:Could you optimize your algorithm to use...
分类:其他好文   时间:2014-10-27 17:33:44    阅读次数:223
Triangle LeetCode |My solution
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [3,4], ...
分类:其他好文   时间:2014-10-27 15:36:28    阅读次数:190
Javascript操作Tr隐藏显示变形~
1 document.getElementById('params_box').style.display = 'block';修改为1 document.getElementById('params_box').style.display = 'table-row';
分类:编程语言   时间:2014-10-27 12:37:14    阅读次数:320
POJ 1651 Multiplication Puzzle
传送门@百度Multiplication PuzzleTime Limit: 1000MSMemory Limit: 65536KDescriptionThe multiplication puzzle is played with a row of cards, each containing a...
分类:其他好文   时间:2014-10-27 12:22:13    阅读次数:149
oracle表被锁(delete或update一直处于执行状态)的处理办法。
1 --首先查看有哪些锁 2 select /*+ rule */ s.username, 3 decode(l.type,'TM','TABLE LOCK','TX','ROW LOCK',null) lock_level, 4 o.owner, 5 o.ob...
分类:数据库   时间:2014-10-27 09:14:02    阅读次数:355
MySQL参数binlog-do-db对binlogs写入的影响
目的:当数据库中设置了binlog-do-db时,在不同的binlog_format=statement | row | mixed 下对binlog的写入影响,这个在主从复制中会有一些坑,由于binlog的写入不完全,极有可能会导致主从不一致的情况的。...
分类:数据库   时间:2014-10-26 15:39:25    阅读次数:276
[leetcode]Pascal's Triangle II
问题描述: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 思路: ...
分类:其他好文   时间:2014-10-26 11:46:08    阅读次数:251
jQuery EasyUI, datagrid, treegrid formatter 参数比较 row index
如题:datagrid中,见官方文档:formatterfunctionThe cell formatter function, take three parameter:value: the field value.rowData: the row record data.rowIndex: th...
分类:Web程序   时间:2014-10-26 00:14:43    阅读次数:245
SQL Server 表压缩
表压缩有三个选项 1、page 2、row 3、none-----------------------------------------------------------------------------------------------------------------------...
分类:数据库   时间:2014-10-25 21:20:23    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!