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.
イベントのテーブルがあり、それぞれに開始日と終了日があります。ここで、(PHP で 1 つの SQL のみを使用して) 終了日が最も遅いイベントと開始日が最も早いイベントを取得したいと考えています。誰もこれを行う方法を知っていますか? ありがとう!
十分に簡単
SELECT MIN(StartDate), Max(EndDate) From yourTable