Is there any way how to remove backslashes from query with concat and additional characters between selects?
When I run:
SELECT CONCAT(city,' - ',total_number) FROM table...
the query transforms to:
SELECT CONCAT(city,\' - \',total_number) FROM table...
and doesn't return any results.
Thanks.