|
2
|
| Avinash · 技术社区 · 16 年前 |
|
|
1
10
should get you the number of user tables. You can also use
will give you an index count. You may need to further filter both though, depending on which types of indexes you want. |
|
|
2
0
甲骨文 计数表: SELECT COUNT(*) FROM user_tables; 计数序列 从用户序列中选择count(*)。 计数视图 SELECT COUNT(*) FROM user_views; 计数指标 SELECT COUNT(*) FROM user_indexes; |
|
|
3
-1
希望下面的SQL作品
将返回各自数据库中的表数。 |