Hello,
I am fairly new to RE NXT. I would like to run a query like this:
(Select first_name, last_name, gift_date, sum(gift_amount)
From giftdata
Where location = “San Francisco”
Group By first_name, last_name, gift_date
Having sum(gift_amount) > 1000;)
Can I run a query like this in the database view of RENXT? Web view? Any help or advice would be greatly appreciated.