[PHP-DB] Delete duplications from a mysql-resultset

2003-02-22 Thread André Sannerholt
I know the SELECT DISTINCT function. But I need to delete duplications from the finished resultset. Is that in any way possible? The result-set is not like an usual array, is it? I've tried the unique_array function, but it didn't work. André Sannerholt -- PHP Database Mailing List

RE: [PHP-DB] Delete duplications from a mysql-resultset

2003-02-22 Thread John W. Holmes
I know the SELECT DISTINCT function. But I need to delete duplications from the finished resultset. Is that in any way possible? The result-set is not like an usual array, is it? I've tried the unique_array function, but it didn't work. You have to add the result set into an array, first.