特定の会場での楽しいプログラムの開始時刻と終了時刻を格納するための 2 つの列 startdate と enddate を含むテーブルがあります (両方の列の datetime-format の形式は 'Ymd H:i:s' です)。a program within this time limit
またはthe end time of the program lies within the time limit but not the start time
、the start time lies within the time limit but not the end time
アラートを表示しているテーブルにプログラムを挿入しないでください。このようにクエリを書きましたが、正しく動作しません。
SELECT * FROM tbl_venue WHERE venue_id='id' AND
((venue_start_datetime BETWEEN 'entered starttime' AND 'entered end time')
AND (venue_stop_datetime BETWEEN 'entered starttime' AND 'entered end time'))
前もって感謝します。