Help for this page

Select Code to Download


  1. or download this
    use HTTP::Date;
    
    ...
    else {
        print "Start and End times are identical\n";
    }
    
  2. or download this
    SELECT 1 WHERE check_time BETWEEN start_time AND end_time
    or
    SELECT 1 WHERE concat(check_date, ' ', check_time) BETWEEN concat(star
    +t_date, ' ', start_time) AND concat(end_date, ' ', end_time)