AX – D365FO – Using Like in select statement in X++

In SQL it is common to use like when querying data.  For example, the following SQL statement queries the CustTable table for all customers that begin with ’12’

select * from CustTable where AccountNum like '12%'

It is also possible to use like in X++ syntax.  The following X++ statement queries the CustTable table for the same data:

CustTable custTable;
AccountNum accountNumFilter;

accountNumFilter = '12*';

select custTable where custTable.AccountNum like accountNumFilter;

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s