What\'s the best way to run a query so that spaces in the fields are ignored? For example, the following queries:
SELECT * FROM mytable WHERE username = \"Jo
TRY THIS:
SELECT * FROM mytable WHERE username =REPLACE("John Bob Jones", ' ', '')