Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种方法可以使用 Java 代码从 Oracle 获取评论?我尝试了使用 Describe 但它不适用于 JDBC(Java 代码)。你能建议一些方法吗?
您可以运行此查询以获取表的评论。
select comments from user_tab_comments where table_name = 'T';
如果您想获得专栏的评论:
select comments from user_col_comments where table_name = 'T';
Java 代码将与您在任何普通查询中使用的代码相似,即通过建立连接然后执行查询并使用 Iswanto 提供的上述 2 个语句