我现在又url
http://www.xxx.com/aaa.html?dne=hiejs&jco=snncl
http://www.xxx.com/aaa.do?dne=hiejs&jco=snncl
http://www.xxx.com/aaa.action?dne=hiejs&jco=snncl
请问怎么去的url的后缀
html do action
substr()
JScript code:
var s="http://www.xxx.com/aaa.html?d ......
今天遇到一个很诡异的问题。我在一张表中新增了一个字段。然后用如下脚本更新这个字段的值:
SQL code:
update ibp_fund_information_tab set yield = 7.4520 where fund_code = '040003' and info_date = to_date('20081128', 'yyyymmdd');
update ibp_fund_information_tab set yield = 6.2900 where fund_ ......
1.使用sys登陆,如何查看哪个用户下的对象占用的磁盘空间最大?
2.执行查询时报错:ORA-01652:无法通过128(在表空间TEMP中)扩展temp段,不知是什么原因?
3.输入:一个字符串“35,36,380”
要求生成3行数据,如下:
35
36
380
用sql怎么写?
4 ......
1、cube与rollup是SQL的标准不是oracle的标准吧?就是说其它数据库只要遵从SQL92标准,都可以使用这两个函数?
2、oracle9i中对于50万左右以下的数据,使用rollup要比cube快;
但对于100万以上的数据,使用cube却比rollup要快;
SQL中rollup(a)与cube(a)都是带一个参数的,请问这是为什么呢?在只有一个参数的情况下,cu ......
SqlServer中的查询语句select sid as '学号' from student
但是在ORACLE中不能这么写,
请问在oracle中怎么给查询字段赋个别名?
SQL code:
select sid "学号" from student;
select sid "学号" from student
select sid as '学号' from student
去掉引号
o 知道啦
原来 ......
有个表A表,B表,然后两个表都只有key 和value两个字段.
然后判断A表和B表的的key如果相同的话,把A表的value修改成为B的value
再问下cash when...then...else..end中可以嵌套几个else??
update a
set value = (select value from b
where b.key = a.key)
where exists (select ......