I am trying to convert the company FetchXML files into SQL code. when I came across this statement in FectchXML:
<condition attribute = "vcr_ambassador", operator="eq-userid">
Actually, I know it means to get the current user. Also, I have read some tutorial online and some stack overflow answers about it. But I am still confused. I am not sure if I can still run my SQL code without translating this operator. All I want is to compare the results from SQL with the results from FechXML. I dont really care about the current user.
Moreover, how does this "eq-userid" operator relate to the WHERE clause in SQL? If I don't translate this operator, does it affect the SQL result?