Re: Problems with normalisation
Posted by: Stefan Hinz
Date: May 20, 2009 08:23AM

Not sure what exactly you're asking about, but here are a few hints:

- You probably want 3 tables in 1 database.
- You "link" those tables by using joins.

Example:

CREATE DATABASE users;
USE users;
CREATE TABLE users (user_id(INT), ...);
CREATE TABLE forum (user_id(INT), forum_id(INT), ...);
CREATE TABLE store (user_id(INT), store_id(INT), ...);
SELECT * FROM forum LEFT JOIN users ON forum.user_id = users.user_id;

This is just a very simplistic example; hope it gets you started.

Stefan Hinz, MySQL Documentation, Berlin, Germany

Options: ReplyQuote


Subject
Written By
Posted
Re: Problems with normalisation
May 20, 2009 08:23AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.