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.
2 つの日付の間の条件でデータベースにクエリを実行する方法を知っている人はいますか。例: SELECT * FROM table WHERE date between "begin" and "end"
日付列が使用するデータ型に基づいています。通常はvarchar(8)(例:20150707)で保存します。したがって、2 つの日付の間でクエリを実行するのは簡単です。
varchar(8)
select * from table where date > '20150707'