Jarin Posted June 27, 2006 Share Posted June 27, 2006 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. Quote Link to comment Share on other sites More sharing options...
fenway Posted July 3, 2006 Share Posted July 3, 2006 That's going to be a problem... MySQL will never return duplicate rows for a single-table query. But since you can "know" that it's duplicate, why can't you simply process the extra interations in PHP directly? No need for the DB to do more work! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.