5
我需要將值插入到表中。但我的情況是,我需要從另一個表中選擇Min(date)
,並將此值插入到另一個表中。如何在SQL Server 2005的插入查詢中使用select查詢
我查詢
Insert into tempTable values
('Value1','Value2','Value3',(select min(val_dt) from anotherTable),'Y',getdate())
如果我用這個查詢我面對錯誤。
指導我如何在插入查詢中使用select查詢。