码迷,mamicode.com
首页 >  
搜索关键字:where select    ( 51223个结果
jquery js javascript select 无限级 插件 优化foxidea版
无限级 select demo2
分类:编程语言   时间:2014-05-25 23:12:55    阅读次数:414
Oracle分页语句
select * from (select A.*,rownum rd from (select * from [tablename] where [condition] order by [condition] ) A where rownum=[startpage*pagesize];1.sel...
分类:数据库   时间:2014-05-25 22:29:33    阅读次数:349
DataTable排序(来自其他空间)
DataTable排序DataRow[] rows = dataTable1.Select("", "ord asc");DataTable t = DataTable1.Clone();t.Clear();foreach (DataRow row in rows) t.ImportRow(row)...
分类:其他好文   时间:2014-05-25 20:16:33    阅读次数:341
SQL语句执行顺寻
SQL语句执行的时候是有一定顺序的。理解这个顺序对SQL的使用和学习有很大的帮助。 1.from 先选择一个表,或者说源头,构成一个结果集。 2.where 然后用where对结果集进行筛选。筛选出需要的信息形成新的结果集。 3.group by 对新的结果集分组。 4.having 筛选出想要的分...
分类:数据库   时间:2014-05-25 20:04:42    阅读次数:323
Jquery小札记
*1 /* 获取select的选中的option值,需要用:select过滤器 */2 setStatue option:selected //IE全兼容;
分类:Web程序   时间:2014-05-25 18:51:22    阅读次数:256
SQL游标
declare test_Cursor cursor scroll global for select * from fktable --声明一个游标,加上scroll支持游标向任何方向移动declare test_Cursor cursor forward_only global for sele...
分类:数据库   时间:2014-05-25 18:48:34    阅读次数:327
LeetCode: Rotate List [060]
【题目】 Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k = 2, return 4->5->1->2->3->NULL. 【题意】 给定一个链表L,和非负数K,要求把链表的后k个节点移到链表前 【思路】 先将指针指向指向倒数第K个节点,然后...
分类:其他好文   时间:2014-05-25 18:20:06    阅读次数:252
ACdream1020:The Game about KILL
Problem Description Teacher HU and his 40 students were trapped by the brigands. To show their power, the head of the brigands want to select one people to kill. Teacher HU and his 40 students wil...
分类:其他好文   时间:2014-05-25 18:19:44    阅读次数:306
Oracle删除重复行
Oracle删除重复行分类:ORACLE2010-12-12 17:10423人阅读评论(0)收藏举报oracletabledeleteintegerinsert.net查询及删除重复记录的SQL语句1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * fro...
分类:数据库   时间:2014-05-25 15:01:27    阅读次数:309
Oracle中空值与数字相加问题
select 10 + 10 + 10 from dual 结果是30,完全没问题。 select null + 10 + 10 from dual 结果是空串,但期望的结果是20. select nvl(null,0) + 10 + 10 from dual 这样处理结果为20。若查询有空值的情况需利用nvl处理,否则运算有误。...
分类:数据库   时间:2014-05-25 09:43:07    阅读次数:277
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!