数据库在Unix Server上,我通过终端sqlplus登陆后,想查询一个数据库里的某张表的PK列。请问如何查询?
$sqlplus username/password@tnsname
SQL> desc table_1
a number(38)
b varchar(100)
SQL> how to query the PK columns of table_1 ?