How can i SELECT DISTINCT IN X++ select statment
How can i SELECT DISTINCT records from table IN X++ select statment?
Ans : Use ‘GroupBy’ in the select statement which field you want the distinct records.
ex:
while select * from tablename group by tablename.fieldname
{
}
Comments
Post a Comment