2014-02-11 43 views
1

我想基於截斷正常中的列(Boxc,Sites)值更新sched table連接表達式中的語法錯誤

我的查詢是:

oCm.CommandText = "update (sched join cutoffnormal on sched.Box = cutoffnormal.Boxc and sched.Site=cutoffnormal.Sites) set sched.Cutoff_Time = cutoffnormal.Cutoff" 

但是我receving像「在加入操作語法錯誤」錯誤

任何一個可以在此幫助?提前致謝。

+0

在訪問中您應該使用'inner join'而不是'join' –

+0

感謝您的協助。 – user2095503

回答

0

訪問SQL不支持沒有限定符的JOIN關鍵字。正如您發現的那樣,

... Table1 JOIN Table2 ... 

將產生語法錯誤。您需要使用

... Table1 INNER JOIN Table2 ... 
相關問題