I'm trying to select the name and lastname of all users which name+lastname starts with "John D", I mean it could select "John Doe", "John Deniro", "John Dalas".
but this select doesn't work:
SELECT name,lastname FROM users WHERE name+" "+lastname LIKE 'john D%';
So, how can I make that work?