|
You are correct that I'm sick of entering data with the command line, but as I mentioned in my post, I'm currently using the mysql gui tools (e.g mysql query browser) which I like (form most tasks) much better than phpMyAdmin.
The issue, again, is that since the join table is made up of primary keys, it's difficult for me to enter the data without having to have to look up what each key is referring to every time I want to add data to the join table.
So for example, I wanted to add to the join table an entry that reflects that the "Porsche has a Mirror", I'd first have to lookup that the primary key (carID) for porsche is 2, and then that the primary key (partID) for mirror is one. Only then could I enter the values: 2,1 into the table.
So my issue is, other than looking up in the cars and parts table each time I need to add data (e.g to figure out the ID that corresponds to the data), is there a better way to do this?
Maybe I could create a web form that allows me to enter the data for the join table that calls the cars and parts table in a dropdown? That's what I'm talking about.....something like that.
Thanks.
|