My database engine is MySQL. I have a query I’m building in Base in SQL mode, and it’s not correctly interpreting the SQL.
SELECT CONCAT_WS(" ", FIRSTNAME, LASTNAME) FROM PERSONNEL WHERE ID = 1
If I execute that outside Base, it gives me the desired results. Inside base, I get:
Unknown column ’ ’ in ‘field list’
I’ve tried replacing the space with a different string for a separator, and it keeps coming back saying that string is an unknown column. I have other places in this .odb that use concat_ws, and AFAIK, they’re still working correctly.
Is this a new bug? Does anyone know how to work around it?