Hi,in my SQL , the where clause {SRAction}.[IsActive] need to be always true.The code is as per below.
SyntaxEditor Code Snippet
{SRAction}.[IsActive]=True
However, it i hits error as per below
By removing the where clause, the SQL is running fine.
Does anyone has idea on this?Help !!
Hi Johnson,
You need to write where condition like below:
where {SRAction}.[IsActive]=1
Regards
-SK-
Thanks Shashi
You are welcome !
I want to add that for such a simple query, you should use an Aggregate, not a SQL!