Jump to content

Duplicate Results


Jarin

Recommended Posts

I'm having a bit of a problem.. I have some PHP code that gets a result set from the database from an SQL array and performs a loop on them. However, some of the elements of the array may have duplicate values and MySQL weeds them out and only selects that particular row once. Say, for instance, we have this query:

SELECT * FROM items WHERE id IN ('1', '2', '3', '1')

('id' is the primary key in this case, each row is unique)

The query would only return the first '1' in the list. However, I need it to return both '1's so that I can perform the loop on both of them, even though it is the same data twice. I have yet to find a way to do this or a workaround for it. Any tips would be much appreciated.
Link to comment
https://forums.phpfreaks.com/topic/13052-duplicate-results/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.