thejayjay Posted January 22, 2003 Share Posted January 22, 2003 i want to select some additional fields from my table, but they don\'t need to be distinct. how do i do that? Quote Link to comment Share on other sites More sharing options...
pallevillesen Posted January 22, 2003 Share Posted January 22, 2003 Well, it is not possible in a single query to get distinct values from one coloumn (field) and multiple hits from another coloumn. If that is what you want you must make a subselect which is not directly possible, but you may use temporary tables (see other threads). An alternative is to get the not-distinct results and then parse the coloumn you want to be distinct, i.e. sort the rows on the coloumn you want to be distinct and then only grab unique values from this coloumn. Another alternative is to return distinct values first, then for each distinct value do a non-distinct query with this value in the WHERE clause (again using php or perl or some other language). Of all of the above I like temporary tables most or the parsing solution, since several sql queries might be quite slow. If you want us to be more detailed then you should post a more detailed description of your tables, fields and so on. Including your current sql query! I hope this will get you further, P., denmark Quote Link to comment Share on other sites More sharing options...
thejayjay Posted January 22, 2003 Author Share Posted January 22, 2003 that was the answer that i was looking for and was pretty much what i had determined from looking for information online. thanks for clearing it up for me! cheers, james 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.