我有这个问题:
select total.lecgrouplecture(l.groupcode) lecturename,
total.lecgrouptime(l.groupcode) lecttime
from total.lecgroup l
where term = (select term
from total.CURENTTERM)
and rownum < 10
order by lecturename
我想知道total.lecgrouptime(l.groupcode)
是什么,并从哪里获取此信息?
答案 0 :(得分:1)
total是包名称
lecgrouplecture是该包中的一个函数
在user_source中查找代码或使用类似SQL Developer或TOAD的GUI
答案 1 :(得分:0)
看起来TOTAL是架构的名称(SELECT * FROM all_users WHERE username = 'TOTAL'
)。如果是这种情况,则lecgrouplecture
必须是pl / sql函数。您可以通过Robert的查询找到它的作用:
SELECT *
FROM all_source
WHERE owner = 'TOTAL'
AND name = 'LECGROUPLECTURE'
ORDER BY line;