Originally posted by LordShryku
Have you looked at trying to use maybe DATE_FORMAT and CAST?
i did try CAST and STR_TO_DATE, but with no luck -- possibly i did something wrong, possibly my server isn't running the most up-to-date version of mySQL.
but i did some further reading, and i've been having some luck using SUBSTRING_INDEX. if my format is m[m]/d[d]/yyyy, i can nest a query as follows:
SUBSTRING_INDEX(record_date, '/', -1) = yyyy
SUBSTRING_INDEX(record_date, '/', 2) = m[m]/d[d]
SUBSTRING_INDEX(SUBSTRING_INDEX(record_date, '/', 2), '/', 1) = m[m]
SUBSTRING_INDEX(SUBSTRING_INDEX(record_date, '/', 2), '/', -1) = d[d]
still having some problems, but i think i'm getting there.