在使用select查询数据库时,有时有很多重复项,这是我们只需要在查询字段前面加上distinct修饰符这样就可以去除重复项。
作用于单列:
select distinct field1 from tablename;
作用于多列:
select distinct field1, field2, field3 from tablename;
在使用select查询数据库时,有时有很多重复项,这是我们只需要在查询字段前面加上distinct修饰符这样就可以去除重复项。
作用于单列:
select distinct field1 from tablename;
作用于多列:
select distinct field1, field2, field3 from tablename;