Hi,
in X++ is no IN or BETWEEN statement,
use this instead:
select table where table.field >= value1 && table.field<= value2
select table where table.field like "te*" // * means 0,1 or more chars
select table where table.field like "te??" // ? means exact 1 char
bxe,
Sebastian
-----Original Message-----
From: Alfonso Collados Arroyo [mailto:[EMAIL PROTECTED]
Sent: Monday, November 08, 2004 9:08 AM
To: 'Development-Axapta ([EMAIL PROTECTED])
Subject: [development-axapta] where clause
Hi all,
I want to make a select statement like this:
Select Table where Table.Field IN (Value1,Value2);
How can I do this in X++? I'm interested in IN clause.
Regards,
Alfonso
[Non-text portions of this message have been removed]
Yahoo! Groups Links
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

