sqlplus常用命令

来源:互联网 发布:linux chgrp 编辑:程序博客网 时间:2024/05/18 01:58
1、显示数据库中的表


    返回所有表:
    select table_name from all_tables; 
    
    返回当前用户的所有表(1)  
    select table_name from user_tables;
    
    返回当前用户的所有表(2) 

    select table_name from tabs;


原创粉丝点击