后端开发小站

分类


标签


Nodejs orm 中对sql中distinct关键字的使用

熊毅熊毅

sql中使用distinct关键字可以查询不重复的条目。

node-orm中使用方式如下:

ex:查询TABLE表中name字段且不重复的值

TABLE.aggregate().distinct("name").get(function(err, items){})

生而为人,必须努力

评论 0
目前没有任何评论