DROP SYNONYM (Transact-SQL)
SQL Server 2008 R2
Removes a synonym from a specified schema.
The following example first creates a synonym, MyProduct, and then drops the synonym.
USE tempdb; GO -- Create a synonym for the Product table in AdventureWorks2008R2. CREATE SYNONYM MyProduct FOR AdventureWorks2008R2.Production.Product; GO -- Drop synonym MyProduct. USE tempdb; GO DROP SYNONYM MyProduct; GO