MySQL Date range incorrect result obtained - Query ignores the specified range
Tag : mysql , By : Alecsandru Soare
Date : March 29 2020, 07:55 AM
This might help you I have a query that involves searching database over a range of 30 days. Queries, both with correct output and wrong output are below: , I solved it myself using a totally different method.
|
Find if given date range inside another date range in MySQL
Tag : php , By : Amin Amini
Date : March 29 2020, 07:55 AM
it fixes the issue It sounds like you want any promotional sale that is active during the range. In that case, you don't need to check that the start dates and end dates exist in the range, which is what you are doing now. You simply need to check that the start date happened before the range is closed, and then that the end date happened after the range opened. Hope that makes sense? SELECT *
FROM tbl_preco
WHERE isActive = 1
AND start_date < '2014-12-13 11:45:00'
AND end_date > '2014-12-11 15:45:00';
|
How to compare current date with a date range or discrete date values in MySQL?
Tag : mysql , By : antonio
Date : March 29 2020, 07:55 AM
To fix the issue you can do I would definitely use find_in_set() and substring_index(), if I had such a lousy data structure: select t.*
from t
where find_in_set(date_format(curdate(), '%Y-%m-%d'), datecol) > 0 or
(datecol like '%,%' and datecol not like '%,%,%' and
date_format(curdate(), '%Y-%m-%d') between substring_index(datecol, ',', 1) and substring_index(datecol, ',', -1)
);
|
Laravel - PHP/MySQL date range filter against date range in database
Tag : php , By : jaredsmiller
Date : March 29 2020, 07:55 AM
With these it helps I am working on an application using Laravel and I am trying to filter records from the database. Here is the criteria: , Your initial excluded_period can't be between your start and end: ->whereNotBetween('excluded_period_start', [$start, $end])
->whereNotBetween('excluded_period_end', [$start, $end])
|
php MySQL query between two date time but include minutes from outside range if finish in range
Date : March 29 2020, 07:55 AM
wish of those help I find the answer for my needs. I will post below maybe will help another people. It work great. $quu ="SELECT
tableCalculated.lenght,
tableCalculated.timeACalculated AS timeA,
tableCalculated.timeBCalculated AS timeB,
TIMEDIFF(tableCalculated.timeBCalculated, tableCalculated.timeACalculated) AS period
FROM
(
SELECT
lenght,
timeA,
(CASE
WHEN TIMEDIFF(timeA, '$zistart') < 0 THEN '$zistart'
WHEN TIMEDIFF(timeA, '$zistart') > 0 THEN timeA END) AS timeACalculated,
timeB,
(CASE
WHEN TIMEDIFF(timeB,'$ziend') < 0 THEN timeB
WHEN TIMEDIFF(timeB,'$ziend') > 0 THEN '$ziend' END) AS timeBCalculated
FROM
`apm_travel_sheet`
WHERE
imei = '$imei'
HAVING
timeBCalculated <= '$ziend' AND timeACalculated >= '$zistart' ORDER BY id ASC
) AS tableCalculated
HAVING period > 0";
|