Hi guys,
We are trying to make a list which shows a list of constituents with at least 1 order in ticket history, and their account creation date is within last 30 days from today.
Could you please confirm if this SQL code is correct?
Technically, doing an inner join on T_TICKET_HISTORY will accomplish the same thing as your LEFT OUTER/NOT NULL, but don't forget to do "SELECT DISTINCT", as you will get multiple rows for each match in T_TICKET_HISTORY, and List Manager won't like that.