Jump to content

Relationship woes


Lukey

Recommended Posts

Yup im a newbie that doesnt understand the major differences in MS Access relationships and the way its done in mySQL any input would be appreciated

 

The problem:

 

I have a table called "house" with the house's address etc in it:

 

CREATE TABLE `house` (
  `id` int(11) NOT NULL auto_increment,
  `hname` varchar(20) default NULL,
  `hnum` varchar(5) default NULL,
  `hstreet` varchar(20) default NULL,
  `htown` varchar(30) default NULL,
  `harea` varchar(30) default NULL,
  `hcounty` varchar(20) default NULL,
  `hcountry` varchar(25) default NULL,
  `hprice` varchar(9) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

 

Im attempting to create a separate table that holds extra details about the houses such as number of bedrooms etc.  How would i link the two together using the "id" key in the house table?

 

Thanks for the time.

Link to comment
Share on other sites

Is that all i need? a left join?

 

i checked through a load of stuff and it seemed that i might need a foreign key or something along those lines.

 

If i use the join command will it keep the tables separate?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.