I am trying to Execute a SQL query in Power Automate Desktop. Part of my query includes the following code:
And (Assign_To_Name = '%Smith%' Or
Assign_To_Name = '%Johnson%' Or
Assign_To_Name = '%Null%')
However, I receive an error that states Invalid Column Name. I have tried severl different ways of executing code such as
And( Assign_To_Name = "%%Smith%%") or Assign_To_Name like '%Smith%' but none of these syntax ways work. I think it is the modulus that is throwing it off. Any suggestions