Query distinct(List<String> column) { if (_select != '') { _select += ', '; } _select += ' DISTINCT '; _select += column.toString().replaceAll('[', '').replaceAll(']', ''); return this; }