获取数据库视图
CREATE VIEW customer_ro (name, language, credit)
AS SELECT cust_last_name, nls_language, credit_limit
FROM customers
我如何从数据库中获取特定视图的别名(即名称、语言和信用)。(oracle)....
我需要通过 jdbc 使用它...
CREATE VIEW customer_ro (name, language, credit)
AS SELECT cust_last_name, nls_language, credit_limit
FROM customers
How do i get the names of the aliases(i.e name, language, and credit) with respect to a particular view from the database.(oracle)....
i need to use it via jdbc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管视图不再出现在
USER_TABLES
中,但它们仍然出现在USER_TAB_COLUMNS
中(以及DBA_
和ALL_
等效项)。所以你可以这样做:从 jdbc 中你可以参数化它,但否则相同的查询将起作用。
Although views no longer appear in
USER_TABLES
, they are still inUSER_TAB_COLUMNS
(andDBA_
andALL_
equivalents). So you can do this:From jdbc you'd parameterise that, but otherwise the same query will work.