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.
この日時範囲を超えるミリ秒アクセスでデータを選択する方法
select * from logevents where logTime>='12/6/2012 3:54:15 PM' のように
logTime は日時フィールドです
日付の両端に # 記号を追加すると、これが日付型であることが Access に認識されます。
select * from logevents where logTime>=#12/6/2012 3:54:15 PM#