Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここにアクセスして、2012 年 10 月 15 日を除いて、列のすべての日付を null にしようとしています。
Update tbl_ReleaseTracking Set 2nd_Ltr_Sent= null WHERE 2nd_Ltr_Sent <> #10/15/2012#
クエリ式 '2nd_LRT_Sent <> #10/15/2012# に演算子がありませんというエラーが表示されます。
これはあなたが望むことをします:
Update tbl_ReleaseTracking Set [2nd_Ltr_Sent]= null WHERE [2nd_Ltr_Sent] <> #10/15/2012#
私は MS Access に詳しくありませんが、列を数字で始めるべきではないと思います。カラム名を ``?