Are there any mySQL interfaces like phpmyadmin that have a GUI for connections?
I know that you can run saved queries (which may include joins) in phpmyadmin, but I'm looking for a user-friendly way to solve other interfaces. I donโt need an external interface, I just want to see how others do it.
If not, what would be a good way to get closer to creating a connection interface?
Currently, I think, given the table student and enrollment (as a simple example), so that
student table +---------------------------+ | id | name | number | +------+--------+-----------+ | 2 | Joe | 04567843 | | 3 | Jim | 43243254 | | 4 | Jack | 23145671 | +------+--------+-----------+
and..
enrollment +---------------------+------------+-----------+ | id | student_id | course_id | score | +------+--------------+------------+-----------+ | 1 | 2 | ma001 | 86% | | 2 | 2 | en001 | 46% | | 3 | 3 | ma001 | 78% | +------+--------------+------------+-----------+
The interface can allow you to select the main table and the fields you need, then the secondary table and the necessary fields. And finally, the JOIN input field, where you select the type of connection and the fields connecting it (see. Image).
Image is a layout using firebug manipulating phpmyadmin to show what I mean (hopefully)

I understand that these are 2 questions, but are very closely related to each other, but to summarize, is there such a front end? And if not, will there be an approach described above?
source share