Create functions in oracle? How to check which functions you have created?

Under SQL PLUS: 
Check which functions have been built, note that capitalize
select object_name from user_objects where object_type='FUNCTION' in quotation marks;
check the function content, the function name you want to query in quotation marks, also capitalize
select text from user_source where name= 'Function name';

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325692689&siteId=291194637