I have a table in SQL Server and underneath, there is a constraints folder. How can I view the constraints in that folder? I didn't see a modify constraint to where I can view it.
2 Answers
What do you mean by modify constraint ??
If you're talking about SQL Server Management Studio and its Object Explorer - you can right-click on the Constraints node for any given table and choose Add constraint - is that what you're looking for??
If you want to change an existing constraint. you need to click on that constraint and typically you need to script that out to drop and then re-create that constraint

You cannot just modify it "in place" (there's no Modify Constraint dialog box or anything like that).