I would like to run a query on a MySQL database table to return all the rows where the column data has white space. e.g.:
Usernames
andy davies
peter
geoff smith
steve
bob paul
The query would only return 'andy davies', 'geoff smith', 'bob paul' and ignore 'peter' and 'steve'
Any ideas?