连接到PDB数据库
CMD窗口:sqlplus 用户名/密码@localhost:1521/PDB数据库名 示例:sqlplus xiaozijie/Abc4681101@localhost:1521/hdwgamebox as sysdba
查看函数的存储过程的内容
储存过程:
select text from user_source where type='PROCEDURE' and name='PROCEDURE_NAME';
切记type和name后面的值一定要大写,不然查不出来。
函数同理,把名字换成函数名,type换成FUNCTION就可以了。
3.查看表的结构。
DESC 表名;