Skip to content

Latest commit

 

History

History
20 lines (10 loc) · 332 Bytes

distinct.md

File metadata and controls

20 lines (10 loc) · 332 Bytes

distinct方法属于链式调用方法之一,方法用于返回唯一不同的值。

案例

sql.distinct(true).table('node_table').field('name').where('id=1').select()

最终得到

SELECT DISTINCT name FROM node_table WHERE id=1 

distinct方法的参数是一个布尔值。