码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
一条sql语句,要修改一个字段的俩个值,比如把字段sex中的男改为女,女改为男
update m set m=(case when m='男' then '女' else '男' end) where m''
分类:数据库   时间:2015-05-25 18:27:01    阅读次数:149
list,tuple,dict,字符串常用知识总结
创建列表sample_list=['a',1,('a','b')]Python列表操作sample_list=['a','b',0,1,3]得到列表中的某一个值value_start=sample_list[0]end_value=sample_list[-1]删除列表的第一个值delsample_...
分类:其他好文   时间:2015-05-25 16:32:35    阅读次数:180
ChampOn Home Licensed Agreement
EnglishiOS LICENSED APPLICATION - END USER LICENSE AGREEMENTPLEASE READ CAREFULLY THE FOLLOWING LEGAL AGREEMENT (“Agreement”). THIS AGREEMENT CONSTITU...
分类:其他好文   时间:2015-05-25 16:20:04    阅读次数:91
jQuery超酷苹果3D音乐专辑封面CoverFlow特效
jQuery Coverflow是一款效果非常炫酷的苹果3D音乐专辑封面CoverFlow特效插件。该CoverFlow特效支持鼠标滚动、移动触摸、图片倒影和复杂的CSS3动画。CoverFlow特效的特点有: 支持单独的CSS文件可以使用键盘的Home,End,Page Up,Page Down键进行控制如果浏览器支持会使用CSS3 transformations,否则会自动回退支持动画的...
分类:移动开发   时间:2015-05-25 14:42:24    阅读次数:218
Front-End Interview
1. what is the difference between classes and ID's in CSS?A: ID's are unique: Each element can only have one ID Each page can only have one e...
分类:其他好文   时间:2015-05-25 09:43:10    阅读次数:134
oracle存储过程
--存储过程语法create or replace procedure 名字( 参数1 in/out 类型(不能给长度), 参数2 in/out 类型(不能给长度), 参数3 in/out 类型(不能给长度))is 参数4 类型(可以给长度); 参数5 类型(可以给长度);begin 过程内容end...
分类:数据库   时间:2015-05-24 23:12:12    阅读次数:205
各种语言的hello world
各种语言的Hello World程序1. Ada===================================with Ada.Text_IO;procedure Hello isbegin Ada.Text_IO.Put_Line("Hello World!");end Hello;2.....
分类:编程语言   时间:2015-05-24 18:37:11    阅读次数:297
jQuery中的end()的用法
很多同学不明白jquery中的end()到底该怎么用,官网上也没解释清楚,翻译过来就是:结束最近的操作,返回到匹配元素的前一个状态(返回上一个元素对象)。下面通过例子可以很好的解释$("#div1").find("p").hide().end().hide()第一个hide()是对于p标签的 然后用...
分类:Web程序   时间:2015-05-24 14:11:27    阅读次数:163
SQL中的case when then else end用法
SQL中的case when then else end用法
分类:数据库   时间:2015-05-24 14:07:10    阅读次数:154
LeetCode的medium题集合(C++实现)十二
1 Sqrt(x) Implement int sqrt(int x).Compute and return the square root of x. 因为这里都是整数,可以直接采用二分法求解int mySqrt(int x) { if (x <= 1) return x; int begin = 1, end =x, mid = 0; while (begin...
分类:编程语言   时间:2015-05-24 13:00:28    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!