首页 > 代码库 > Oracle简单语句总结记录

Oracle简单语句总结记录

停掉数据库 shutdown immediate;

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

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

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

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

Oracle简单语句总结记录