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
One way would be to use LIKE and WildCards to build your query citeria. Something like:
SELECT * FROM mytable WHERE username LIKE 'JohnBobJones';