Really hope someone can advise.
Just moved the database to Amazon RDS. Part of the move was to update the database to utf8 which went well.
I have a query which is giving me an error which is.
SELECT
*
FROM
(`specialdaterange`)
WHERE
`parkinglotsproduct_id` = 769
AND '02/15/2014' >= `from`
AND '02/15/2014' <= `to`
LIMIT 1
Error:
Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,NUMERIC) for operation '>='
Now none of that data is text form but as you can se
Also I have made sure the parameters are correct on RDS:
Im not sure where the latin1_swedish_ci is coming from?
Really hope you can advise.