Quantcast
Browsing all 4 articles
Browse latest View live

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 Article


Answer 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


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 Article

Answer 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
Browsing all 4 articles
Browse latest View live