This topic is locked
[SOLVED]

 Filter Duplicate Values

2/28/2013 1:09:17 PM
PHPRunner General questions
J
joiresende author

hello

Is there any way to filter values ​​of a field that are duplicated on the page list.

D
danaci 2/28/2013

select distinct(yourfieldname) from table..

J
joiresende author 2/28/2013

thanks for the reply but I did not understand.

Could you give an example?

D
danaci 3/1/2013

on sql window

edit sql
SELECT

id,

[size="5"]distinct(field name),[/size]

FROM your_table_name
field_name is your field name!