C:\Users\jhone>sqlplus/nolog
SQL> conn oracle/oracle@orcl
// 查询所有数据库中的表
SQL> select table_name from user_tables;
// 查询数据库下某个表的字段信息
SQL> desc app_application;
// 查询某张表的第一条记录
SQL> select * from user_table where rownum = 1;
C:\Users\jhone>sqlplus/nolog
SQL> conn oracle/oracle@orcl
// 查询所有数据库中的表
SQL> select table_name from user_tables;
// 查询数据库下某个表的字段信息
SQL> desc app_application;
// 查询某张表的第一条记录
SQL> select * from user_table where rownum = 1;