AccessPlan.prototype.whereDistinct

AccessPlan.prototype.whereDistinct() as ModifyPlan

Summary

This method removes duplicate rows from the row set.

Usage Notes

whereDistinct is a method of the following classes:

Example


const op = require('/MarkLogic/optic');

op.fromLiterals([
            {id:1, val: 2},
            {id:1, val: 2},
            {id:2, val: 4}
	        ])
   .select()
   .whereDistinct()
   .result();
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy