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
SELECT * FROM mytable WHERE REPLACE(username, ' ', '') = REPLACE("John Bob Jones", ' ', '')