This is an old revision of the document!
# PL SQL
# Oracle常用查询语句
## 查询数据库/表/字段等属性
```sql select * from sys.user_tablespaces; --查询用户表空间 select * from sys.user_tables; --查询用户数据库表 ```