Acudir al manual de referencia siempre es la mejor opción para este tipo de dudas:
ALTER TABLE (Transact-SQL)
El esquema es siempre el mismo, no importa si son versiones express o no:
O. Adding and dropping a FOREIGN KEY constraint
Código SQL:
Ver originalUSE AdventureWorks2008R2 ;
GO
CREATE TABLE Person.ContactBackup
(ContactID INT) ;
GO
ALTER TABLE Person.ContactBackup
ADD CONSTRAINT FK_ContactBacup_Contact FOREIGN KEY (ContactID)
REFERENCES Person.Person (BusinessEntityID) ;
ALTER TABLE Person.ContactBackup
DROP CONSTRAINT FK_ContactBacup_Contact ;
GO
DROP TABLE Person.ContactBackup ;