CREATE SYNONYM
Function
CREATE SYNONYM is used to create a synonym object. A synonym is an alias of a database object and is used to record the mapping between database object names. You can use synonyms to access associated database objects.
Precautions
- The user of a synonym should be its owner.
- If the schema name is specified, create a synonym in the specified schema. Otherwise create a synonym in the current schema.
- Database objects that can be accessed using synonyms include tables, views, functions, and stored procedures.
- To use synonyms, you must have the required permissions on associated objects.
- The following DML statements support synonyms: SELECT, INSERT, UPDATE, DELETE, EXPLAIN, and CALL.
- The CREATE SYNONYM statement of an associated function or stored procedure cannot be used in a stored procedure. You are advised to use synonyms existing in the pg_synonym system catalog in the stored procedure.
Syntax
1 2 | CREATE [ OR REPLACE ] SYNONYM synonym_name
FOR object_name;
|
Parameter Description
- synonym
Name of a synonym which is created (optionally with schema names)
Value range: a string. It must comply with the identifier naming rules.
- object_name
Name of an object that is associated (optionally with schema names)
Value range: a string. It must comply with the identifier naming rules.
object_name can be the name of an object that does not exist.
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | -- Create schema ot.
CREATE SCHEMA ot;
-- Create table ot.t1 and its synonym t1.
CREATE TABLE ot.t1(id int, name varchar2(10)) DISTRIBUTE BY hash(id);
CREATE OR REPLACE SYNONYM t1 FOR ot.t1;
-- Use synonym t1.
SELECT * FROM t1;
INSERT INTO t1 VALUES (1, 'ada'), (2, 'bob');
UPDATE t1 SET t1.name = 'cici' WHERE t1.id = 2;
-- Create synonym v1 and its associated view ot.v_t1.
CREATE SYNONYM v1 FOR ot.v_t1;
CREATE VIEW ot.v_t1 AS SELECT * FROM ot.t1;
-- Use synonym v1.
SELECT * FROM v1;
-- Create overloaded function ot.add and its synonym add.
CREATE OR REPLACE FUNCTION ot.add(a integer, b integer) RETURNS integer AS
$$
SELECT $1 + $2
$$
LANGUAGE sql;
CREATE OR REPLACE FUNCTION ot.add(a decimal(5,2), b decimal(5,2)) RETURNS decimal(5,2) AS
$$
SELECT $1 + $2
$$
LANGUAGE sql;
CREATE OR REPLACE SYNONYM add FOR ot.add;
-- Use synonym add.
SELECT add(1,2);
SELECT add(1.2,2.3);
-- Create stored procedure ot.register and its synonym register.
CREATE PROCEDURE ot.register(n_id integer, n_name varchar2(10))
SECURITY INVOKER
AS
BEGIN
INSERT INTO ot.t1 VALUES(n_id, n_name);
END;
/
CREATE OR REPLACE SYNONYM register FOR ot.register;
-- Use synonym register to invoke the stored procedure.
CALL register(3,'mia');
-- Delete the synonym.
DROP SYNONYM t1;
DROP SYNONYM IF EXISTS v1;
DROP SYNONYM IF EXISTS v1;
DROP SYNONYM IF EXISTS add;
DROP SYNONYM register;
DROP SCHEMA ot CASCADE;
|
Helpful Links
Last Article: CREATE SERVER
Next Article: CREATE TABLE
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.