这里是桌子:
在RegionID的默认属性中,我想执行此SELECT语句以在添加新行时建立单元格的值:
select regionID from tRegion where IsNone = 1
[当我尝试保存表格设计时,我得到了“验证列'RegionID'的默认值时出错。
Computed Column
的限制之一是它不能直接访问其表外的任何列。因此,您也可以创建User Defined Function
为:
-- Create UDF to use in computed column
CREATE FUNCTION UDF_GetDefaultRegionId ()
RETURNS int
AS
BEGIN
DECLARE @DefRegionId int
SELECT @DefRegionId = regionID
from tRegion
where IsNone = 1
RETURN @DefRegionId
END;
然后在“测试”表中用作:
CREATE TABLE Test
(
StoreId int,
--set default value here:
RegionId as ([dbo].UDF_GetDefaultRegionId())
)
Sample code here..。希望这有帮助!!