题目:
逐条分析吧:
A:正确,USER_SYNONYMS describes the private synonyms (synonyms owned by the current user). Its columns (except for OWNER) are the same as those in ALL_SYNONYMS.通过他的描述即可判断。在数据库里同义词就相当于表的别名的功能,用一个别名来代表一个表。如:
SQL> create or replace synonym syn1 for jobs;
Synonym created
SQL> select * from user_synonyms;
SYNONYM_NAME TABLE_OWNER TABLE_NAME DB_LINK
------------- ------------ ----------- -------------
SYN1 HR JOBS
SQL> desc user_synonyms;
Name Type Nullable Default Comments
------------ ------------- -------- ------- ---------------------------------------------
SYNONYM_NAME VARCHAR2(30) Name of the synonym
TABLE_OWNER VA