Hi All
I am trying to replicate this SQL WHERE clause in MS FLOW
SQL = WHERE telephone LIKE '%.%' , i.e. is there a dot in the telephone number
some ODATA documentation I have seen sugests I should use substring of , like this: subsringof('.',telephone)
MS Flow checker doesn't complain
The flow says it completes sucessfully
but the substringof fails with this error
{
"status": 400,
"message": "An unknown function with name 'subsringof' was found. This may also be a function import or a key lookup on a navigation property, which is not allowed.\r\n inner exception: An unknown function with name 'subsringof' was found. This may also be a function import or a key lookup on a navigation property, which is not allowed.\r\nclientRequestId: a5e83211-3828-44d7-a1c4-0e2717d7bfe7",
"source": "sql-ncus.azconn-ncus.p.azurewebsites.net"
}which is suggesting substringof is not a valid funtion. this is driving me nuts. Anybody know what the issue is?
thanks
Tony