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.
Mssqlにテーブルがあり、そのテーブルには異なる日付を保持する2つの列があります。(両方のデータ型はsmalldatetimeです)私の目的は、差が60日以上60日より大きい場合、この値をグリッドビューにバインドすることです。単一のSQLクエリでこの値を取得するにはどうすればよいですか?ご協力いただきありがとうございます。
あまり情報がないので、最良の推測は次のようになります。
SELECT DATEDIFF(day, date1, date2) Difference, date1, date2 FROM aSecretTable WHERE DATEDIFF(day, date1, date2) >= 60