同義詞至關於alias(別名)table
好比在schema2中建立schema1.table的同義詞table1select
則在schema2中執行select * from table1時,就至關於在執行select * from schema1.table語法
建立同義詞語法:tab
create synonym table1 for user1.table1;ab
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------