Oracle学习笔记

note1:
清屏 clear screen;
显示当前用户 show user;
查看当前用户所有权限 select * from user_sys_privs;
当前用户拥有的表 select table_name from user_tables;
所有用户的表 select table_name from all_tables;
包括系统表 select table_name from dba_tables;
指定某一用户名的表 select table_name from dba_tables where owner='用户名'
note2:
提交 commit (insert或者update或者delete后,commit后才是真正修改或者插入了数据库中)

如果我的文章对你有所触动,那么点个赞吧!!
原文地址:https://www.cnblogs.com/boboanhaoweiyuan/p/11880997.html