Is it possible in SQL Server 2005 to set a default value for a column which comes from another table through a query or something?

link|improve this question

66% accept rate
Can you explain a bit more about what you are trying to do? – Martin Smith Sep 4 '11 at 7:45
feedback

1 Answer

up vote 1 down vote accepted

Yes.

You can use a scalar UDF in a default constraint.

This will be RBAR ("Row By Agonizing Row") for multi row inserts however and a trigger might well be more efficient.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.