How does lead database logic work in RTP?
When you're creating a segmenting using fields from the lead database. You can choose multiple fields.
I get how a series of ANDs would work. And, I get how a series of ORs would work. But, how does a series of ANDs and ORs work?
For example, let's say this is how I build my segmentation, only using the Lead Database object:
Lead Score - Is Greater than - "50"
AND
Department - Is - "IT"
OR
Email Address - Contains - "company.com"
Does that mean:
( Lead Score > 50 AND Department = "IT" ) OR Email Address Contains "company.com"
Or, does that mean:
Lead Score > 50 AND (Department = "IT" OR Email Address Contains "company.com")
Or, does that mean:
(Lead Score > 50 Or Email Address Contains "company.com") AND (Department = "IT" OR Email Address Contains "company.com" Or Email Address Contains "company.com")
Or, something else?