Filemaker ExecuteSQL isn't working as expected

215 Views Asked by At

I'm using the following line to get the data using ExecuteSQL

ExecuteSQL("SELECT name, Replace(description, '  ', '__') from event");

But it gives the output as ? which means invalid sql in Filemaker. If I try the query like below it is working fine.

ExecuteSQL("SELECT name, description from event");

I don't understand why it is not working. Does Filemaker support Replace function of SQL or any error in the code?

Can someone help.

1

There are 1 best solutions below

2
On

I believe, "replace" is not supported in Filemaker SQL. I can not find it anywhere in the reference.