↧
Answer by OraLearner
Synonym is just a second name of table used for multiple link of database. View can be created with many tables, and with virtual columns and with conditions. But synonym can be on view.Alias is...
View ArticleAnswer by Leigh Riffel
A synonym of a table is another name that can be used to reference the table.CREATE OR REPLACE SYNONYM BOB FOR MySchema.MyTable;This synonym could then be used as follows:SELECT * FROM BOB;A view of a...
View Article