I need assistance on pulling the following lists for our Ticket Office. I am at a lost on how to pull the lists. Can someone help me write sql query to create the the list in Tessitura?
Any help is appreciated.
Thank you,
Amber Sanders
For number three, this SQL in a list should get you what you want.:
select distinct m.kept_id as customer_no from T_MERGED as m where status = 'S' and m.merge_dt >= CONVERT(datetime, '2022/01/01')
This isn't doing any household expansions, and I don't know off the top of my head if you can set up a manual query that will allow household operations?
Edit: Advanced Relationship Options work just fine with this.
Thanks!