Skip to content

Commit

Permalink
feat(cb2-16540): corrected date separator
Browse files Browse the repository at this point in the history
  • Loading branch information
m-coslett committed Feb 27, 2025
1 parent acfef01 commit a1f4bf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/queries/antsQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ SELECT
make,
model,
wheelplan,
DATE_FORMAT(test_date,'%d/%m/%Y') test_date,
DATE_FORMAT(test_date,'%d-%m-%Y') test_date,
weight_before_test,
weight_after_test,
DOE_reference,
DATE_FORMAT(tech_record_date,'%d/%m/%Y') tech_record_date
DATE_FORMAT(tech_record_date,'%d-%m-%Y') tech_record_date
FROM vw_dvla_ants
WHERE test_date >= STR_TO_DATE(?, '%d/%m/%Y %T')
ORDER BY test_date ASC;`;

0 comments on commit a1f4bf0

Please sign in to comment.