I have a database with firstname and lastname columns. Is there a way to query these togheter, for example:
SELECT * FROM TABLE_NAME WHERE firstname + ' ' + lastname = :fullName
Currently this query gives me multiple results even when the firstname and lastname do not match at all with the fullName variable.