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.
日付 = 特定の日付のテーブルから * を選択したいのですが、SQL 列が日付と時刻の形式になっています。時間を無視して特定の日付の日付を取得する方法。
sql-server 2008以降を使用している場合は、関数を使用しconvertて次のように変換できます。datetime type date type
convert
datetime type
date type
select * from yourtable where convert(date, yourDateTimeCol) = yourDate