- 浏览: 21171 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
charles809:
代码好像有错误若String str = "1234 ...
取得字符串中连续为数字长度最长的子串 -
charles809:
您好!代码好像有错误的!若String str = " ...
取得字符串中连续为数字长度最长的子串
文章列表
<html>
<head>
<link href="<%=jmfg%>/css/common.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
</head>
<body class="rightbg" onresi ...
javascript实现弹出窗口随着滚动条而动
首先要知道
document.body.clientWidth(网页可见区域宽)
document.body.clientHeight(网页可见区域高)
document.body.scrollTop(网页被卷去的高)
document.body.scrollLeft(网页被卷去的左)
<script type="text/javascript" language="javascript">
function divcenter()
{
var divId = document ...
装完Ubuntu 9.10后要干的事
Ubuntu 9.10刚刚release,就有人在网上发表了贴子告诉大家在装完这个操作系统后,还需要去安装的一些开源免费软件,相当丰富。不过,这个贴子的链接被GFW干掉了,所以,你需要使用Tor的支持,或是使用G ...
SQL精华收集
order by 的数值型灵活使用
select * from table_a where id=p_id order by decode(函数,'asc',1,'desc',-1)*jsny;
控制试图的访问时间:
6.create view ...
as
select ... from where exists(select x from dual where sysdate>=8:00am and sysdate<=5:00pm)
妙用decode实现排序
select * from tabname
order by decode(mode ...
nvl用法
通过查询获得某个字段的合计值,如果这个值位null将给出一个预设的默认值
select nvl(sum(t.dwxhl),1) from tb_jhde t where zydm=-1这里关心的nvl的用法,nvl(arg,value)代表如果前面的arg的值为null那么返回的值为后面的value 网管联盟w ...