之前一直用如下sql来查看非绑定变量的sql,但是不准selecthash_value,substr(sql_text,1,80)
fromv$sqlarea
wheresubstr(sql_text,1,40)in
(selectsubstr(sql_text,1,40)
fromv$sqlarea
havingcount(*)>1
groupbysubstr(sql_text,1,40));
SELECTsubstr(sql_text,1,80),coun..
分类:
数据库 时间:
2016-10-27 01:55:24
阅读次数:
151
1.substrsubstr(start,length)表示从start位置开始,截取length长度的字符串。 var src="images/off_1.png";alert(src.substr(7,3)); 弹出值为:off 2.substringsubstring(start,end)表示 ...
分类:
Web程序 时间:
2016-10-25 18:33:08
阅读次数:
229
题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique lo ...
分类:
其他好文 时间:
2016-10-24 21:03:27
阅读次数:
208
Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -, or *between the di ...
分类:
其他好文 时间:
2016-10-24 02:38:15
阅读次数:
191
方法一、正则表达式 方法二、 方法三、 其他参数获取介绍: //设置或获取对象指定的文件名或路径。alert(window.location.pathname);//设置或获取整个 URL 为字符串。alert(window.location.href);//设置或获取与 URL 关联的端口号码。a ...
分类:
Web程序 时间:
2016-10-23 23:25:53
阅读次数:
190
Decription 询问深度为 \(d\) 的 \(n\) 元树个数, \(n\) 元树所有节点的孩子都有 \(n\) 个. Sol 递推+高精度. \(f[i]\) 表示深度为 \(i\) 的 \(n\) 元树个数,我这里深度是从 \([1,k+1]\) 的... 转移就是从上方添加一个节点,子 ...
分类:
其他好文 时间:
2016-10-23 23:19:51
阅读次数:
227
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <tit ...
分类:
Web程序 时间:
2016-10-22 00:16:10
阅读次数:
233
oracle 截取字符(substr),检索字符位置(instr) case when then else end语句使用 收藏 常用函数:substr和instr1.SUBSTR(string,start_position,[length]) 求子字符串,返回字符串解释:string 元字符串 s ...
分类:
数据库 时间:
2016-10-21 10:54:58
阅读次数:
203
--select name,count(id) from work_test group by name having count(id)>1--select upper(name),t.*,lower(name),substr(name,1,5) from WORK_TEST t--连表更新/*u ...
分类:
数据库 时间:
2016-10-20 12:22:15
阅读次数:
153
1. 基本包装类型 1)为了便于操作基本类型值,ECMAScript提供了3个特殊的引用类Boolean, Number, String 每当读取一个基本类型值的时候,后台就会创建一个对应的基本包装类型对象,从而可以使我们调用一些方法操作这些数据。 var s = "briup"; s.substr ...
分类:
编程语言 时间:
2016-10-20 00:06:16
阅读次数:
260