mamasita60440
Programmer
I'm creating an online form connected to a MYSQL database. The database will have 4 tables (Handle, Load, Server, and Performance).
The database will be populated by information entered in the form. I want to create a relationship between
Handle-->Performance
Load--->Performance
Server-->Performance
In the performance table I included the primary keys for these tables, but I must do something more to create a relationship between these tables.
I have looked up join and I found that I can use the select command, but this seems more appropriate if the data is already in the tables.
With MS Access once I create a relationship between a table when a column is filled with data in one table it also updated in the other table can I do this with MYSQL?
Is this statement legal or is there something similar that will help me accomplish what I am trying to do?
alter table Performance add HandleID.Handle int(3);
Any help is appreciated. Thanks
The database will be populated by information entered in the form. I want to create a relationship between
Handle-->Performance
Load--->Performance
Server-->Performance
In the performance table I included the primary keys for these tables, but I must do something more to create a relationship between these tables.
I have looked up join and I found that I can use the select command, but this seems more appropriate if the data is already in the tables.
With MS Access once I create a relationship between a table when a column is filled with data in one table it also updated in the other table can I do this with MYSQL?
Is this statement legal or is there something similar that will help me accomplish what I am trying to do?
alter table Performance add HandleID.Handle int(3);
Any help is appreciated. Thanks