当前位置:  开发笔记 > 编程语言 > 正文

如何从你不拥有的oracle表中获取列信息(不使用describe)?

如何解决《如何从你不拥有的oracle表中获取列信息(不使用describe)?》经验,为你挑选了1个好方法。

如何在桌面上获取他不拥有的列信息,但是已经选择了授权?这是,不使用DESCRIBE table_name.考虑这个例子:


// user bob owns table STUDENTS
grant select on students to josh;
// now josh logs in, normally he would do
describe bob.students;
// but he's looking for something along the lines
select column_name from user_tab_columns where table_name = 'STUDENTS';
// which doesn't work, as josh doesn't own any tables on his own

有任何想法吗?这甚至可行吗?



1> tuinstoel..:
select column_name from all_tab_columns where table_name = 'STUDENTS';

编辑:或者,甚至更好

select owner, column_name from all_tab_columns where table_name = 'STUDENTS';

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有