Home >Database >Mysql Tutorial >Oracle中查看当前用户的表

Oracle中查看当前用户的表

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 16:57:091522browse

在sqlplus下登陆,比如按用户sqlplus aaa/password@orcl那么,当前的用户就是aaa如果想查看当前用户自己的表,可以通过如下命令来

在sqlplus下登陆,比如按用户

sqlplus aaa/password@orcl

那么,当前的用户就是aaa

如果想查看当前用户自己的表,可以通过如下命令来实现

select table_name from user_tables;

如果想查看表的信息,,可以通过

desc user_tables

来实现。

在其他的数据库中,也许就不是这样,比如在postgres中,就可以用psql登陆

用\dt来查看用户表

用\l来查看用户数据库

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn