But as the explain states it will try to do the coversion for all values of order_key in the table.
The message you get is indicating that at least one value of order_key can be converted to a float value.
order_key = '123'
Should work.
You should always try to avoid these inplicit conversions...
But as the explain states it will try to do the coversion for all values of order_key in the table.
The message you get is indicating that at least one value of order_key can be converted to a float value.
order_key = '123'
Should work.
You should always try to avoid these inplicit conversions...