phpjayx Posted December 3, 2012 Share Posted December 3, 2012 If I have the columns NAME NUMBER VALID There will be multiple instances of the that same entry How do I pull out one instance of each NAME and NUMBER? (EX. I may have ALEX, 1234 TOM, 44 JEFF, 55 ALEX, 1234 ALEX, 1234 ----------------------- I want to get an array that gives me NAME: ALEX, TOM, JEFF NUMBER: 1234, 44, 55 Not the other instances of ALEX and 1234 ------------------------------------------- Along the same lines, how do I do a COUNT, but only return 3 in the example above, not 5? Thanks in advance Link to comment https://forums.phpfreaks.com/topic/271514-how-do-i-pull-out-one-instance-of-a-name-if-multiple-instances-appear-in-the-database/ Share on other sites More sharing options...
requinix Posted December 3, 2012 Share Posted December 3, 2012 Respectively, DISTINCT and COUNT(DISTINCT ...). Any reason why there are so many duplicates? Link to comment https://forums.phpfreaks.com/topic/271514-how-do-i-pull-out-one-instance-of-a-name-if-multiple-instances-appear-in-the-database/#findComment-1397067 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.