SQL List tables in a database

Solved
ruth -  
 sara -
```sql
SELECT table_name FROM user_tables;
```

4 réponses

fouad
 
MONTRER LES TABLES [DE nomdelabase] [COMME "test%"];
78
tehoden Posted messages 106 Registration date   Status Membre Last intervention   12
 
false... this is a request for MySQL...

in oracle:
List the tables of the current user's schema:

SELECT table_name FROM user_tables

List the tables accessible by the user:

SELECT table_name FROM all_tables

List all tables (you must be ADMIN):

SELECT table_name FROM dba_tables
1
sara
 
thank you
0