2013-12-07 115 views
-2

我在SQL Server中創建了一個表,然後決定使用ALTER TABLE語句添加另一列。所以,我沒有這個在具有NULL值的列中插入值

ALTER TABLE Landlords 
ADD NumberOfProperties numeric(10) NULL; 

現在我無法填補該行中的值作爲第一行的列NumberOfProperties下中有一個NULL由於來自同一行已經有其它列數據,如何在NULL字段中添加值?提前致謝。

+2

更新它:'UPDATE鬥地主SET NumberOfProperties = @ NumberOfProperties WHERE PK = @ PK' –

回答

2
update Landlords 
    set NumberOfProperties = 42 
where primaryKeyColumn = 1; 
+0

非常感謝球員,它的工作:) – paul