Oracle简单语句总结记录

mac2022-06-30  21

停掉数据库 shutdown immediate;

查询用户下面的表 select * from user_tables;

查询用户下边的表名: select   table_name from  user_tables;

在用户名下查询表的名称和列的名称:select table_name , column_name from user_tab_column;

查询表中数据:select * from dept;

转载于:https://www.cnblogs.com/Eumendies/p/7277254.html

最新回复(0)