SQL.Execute("select *, [Name] || '.' || [Surname] || '.' || [Location] as FULLDATA from PERSONAS where FULLDATA like '%" + pin1 + "%' and FULLDATA like '%" + pin2 + "%'");
The '.' is just to avoid that "aryPop" would match with register MaryPoppinsBruxelles.
Is it possible to do this and use ALIAS with SqlExp or it has to be done with plain SQL?
I have to admin I do not know what '[' and ']' mean in [Name]