日期:2014-05-17  浏览次数:20882 次

select查询return_root(o.proxy_number,0) root


1.代码如下
select o.*,return_root(o.proxy_number,0)"FIRSTTRADER" 

from tb_asmts_openanaccountresponse o 

where o.response_time>='2012-02-01'

and o.response_time<'2012-03-01';


问题:
1.红色标记的含义是什么,就是他是一个什么样的实现过程
2.我能从结果中看到: 查询的结果中,多了FIRSTTRADER这个列  



I just want to know what is the mean of 'root'? 


------解决方案--------------------
SQL code

--用下面的语句就能看到你要的函数内容
select   *   from   user_source   where   TYPE= 'FUNCTION' and  name = 'return_root'