I very strange why the error say about arithmetic since the filter only using string and not use any calculation.
Without knowing the table design = data types per column we even can't guess it.
Check the data type of every used column.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
i do query using below SQL syntax and i got the result
but if i uncomment the 'where' syntax i got error
I very strange why the error say about arithmetic since the filter only using string and not use any calculation.
I very strange why the error say about arithmetic since the filter only using string and not use any calculation.
Without knowing the table design = data types per column we even can't guess it.
Check the data type of every used column.
Is NetFlowFlows_ViewByConversation a table or a view? And if is is a view, does it have its own WHERE clause and filtering?
When you query a view, the view is only a macro that is expanded into the query, and the optimizer works with the expanded query. When you added the query filter, you may have gotten entirely different execution plan altogether, so that an expression that logically is filtered out, is now computed before the filter and therefore you get this error.