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.
クエリに対して次の結果を生成するには、どの基準を使用しますか。
ユーザーは、入力された日付から 7 日以内のすべてのレコードを返す単一の日付を求められます。
ユーザーに 2 つの日付を入力させたくありません。
PARAMETERS StartDate DateTime; SELECT TableName.* FROM TableName WHERE (((TableName.EventDate)>([Startdate]-7) And (TableName.EventDate)<([startdate]+7)));
あなたの例の TableName.Date は、予約語をフィールド名として使用していると思います-変更することをお勧めします。