Understanding WinTree's Terms...


 

WinTree allows you to create, save and manipulate Terms. You will use the Terms to create the decision "nodes" in the trees you will design.

Later, you will be able to combine your term as in

Buyer12Mos AND Retired

However, to get started you will be using a language that is very similar to the database programming language SQL.

For example, to create the term Buyer12Mos you might write:

EXIST(SELECT * FROM OrdersTable
WHERE Months(CurrentDate,OrderDate) < 12)

In English, select the customers who have orders (OrdersTable)
within the last 12 months. (Months(CurrentDate,OrderDate) < 12)

Click the buttons for more examples...

Click Next to continue...