Hi everyone, anyone experienced Transaction.status...
# suiteql
s
Hi everyone, anyone experienced Transaction.status = 'B' is not working?
Copy code
SELECT
	*
FROM
	Transaction
WHERE
	( Transaction.createddate between TO_DATE('2024-02-21', 'YYYY-MM-DD') AND TO_DATE('2024-02-23', 'YYYY-MM-DD'))
AND ( Transaction.status = 'B' )
c
s
You can try wrapping the condition in builtin.df(status) and compare on the text version
s
I apperciate @Clay Roper and @SimonC. You guys save my time!