MySQL GROUP BY and HAVING clauses with PHP libraries
MySQL GROUP BY and HAVING clauses with PHP libraries
This question has an accepted answers - jump to answer
This discussion has been closed.
This question has an accepted answers - jump to answer
Answers
I'm sorry to say not. GROUP BY causes all sorts of complexities with regard to the editing aspect of Editor (e.g. needing to update multiple rows in the database, while the end user only sees a single row).
You can create a VIEW and then have the libraries read that if it is a read only table though.
Regards,
Allan
I ended up getting the best of both worlds: I created a view that gives me the stats I want, and joined that to the rest of the editable table. Thanks!