Home > Database > Oracle > body text

How to query all tables in oracle

hzc
Release: 2020-06-08 13:43:31
Original
4547 people have browsed it

How to query all tables in oracle

oracle queries all tables under the current user name

select * from all_tables where owner='TEST';
Copy after login

TEST is the user name, and the user name must be in uppercase.

View the table of currently logged in users:

  select table_name from user_tables;
Copy after login

Oracle related introduction:

Oracle Corporation, the full name is Oracle Corporation (Oracle Software Systems Co., Ltd.), It is the world's largest enterprise software company, headquartered in Redwood Beach, California, USA. Officially entered the Chinese market in 1989. In 2013, Oracle surpassed IBM and became the world's second largest software company after Microsoft. [

Recommended tutorial: "Oracle Tutorial"

The above is the detailed content of How to query all tables in oracle. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!