Using:
ALTER TABLE dbo.Table1Name
ADD FOREIGN KEY (colname)
REFERENCES dbo.Table2Name (colname)
I get a foreign key with a name like: FK___colname__673F4B05
I want it to be named: FK_Tabl1Name_Table2Name,
...so that it will be easy to read when browsing the DB structure in SSMS. I know I can go back into the GUI and do this, but I want to be able to script it.
So What's the SQL sytnax for adding a name to the FK? Nothing I've found online seems to bother with this.
ALTER TABLEdocumentation at msdn: msdn.microsoft.com/en-us/library/ms190273.aspx, section O. Adding and dropping a FOREIGN KEY constraint. – ypercube Mar 27 '11 at 11:29CREATE TABLEdocumentation: msdn.microsoft.com/en-us/library/ms174979.aspx – ypercube Mar 27 '11 at 11:30add foreign key sql-serverto SO search box, yields this as first question/answer :) stackoverflow.com/questions/842151/create-foreign-key-sql – ypercube Mar 27 '11 at 11:50