How to create a computed column based on the Title nvarchar(max) column of another table?
I want to make Title in table 1 a computed column from table2 based on docId = DocId. I keep trying to add it as computed column in SSMS and it won't let me.
Table1
AssetId Title DocId
========================
Table2
DocId Title
=========================
5 Disaster
10 Recovery
15 Pending
JOIN?