nxzwt 发表于 2003-09-11 17:00

如何查看一个数据库中有哪些表?

redhat下的oracle 8i,如何在sqlplus中查看一个数据库有哪些表?

vcebook 发表于 2003-09-11 17:05

angel_xa 发表于 2003-09-11 21:56

如何查看一个数据库中有哪些表?

也可以用select table_name from user_tables;

xyz123 发表于 2003-09-12 09:36

如何查看一个数据库中有哪些表?

还可以用 select table_name from all_tables where owner=用户名

rollingpig 发表于 2003-09-12 09:57

如何查看一个数据库中有哪些表?

呵呵
还可以
select * from tab where tabtype='TABLE'
select * from cat where table_type='TABLE'

royzs 发表于 2012-05-01 16:36

回复 5# rollingpig


    :victory:

soap007 发表于 2012-05-03 15:29

select table_name from all_tables where owner=用户名
页: [1]
查看完整版本: 如何查看一个数据库中有哪些表?