Ok, I'm just doing a database layout in access, before transferring to MySQL, to help me understand how I'm going to make a nice login system.
So I have so far created two tables, A user table and a blog table.
The user table will hold User Details and the blog table will hold there blog input.
The field's in User includes:
(p)Username -> Text
Password ->Text
E-mail -> Text
Name -> Text
Last Name ->Text
The field's in Blog include
(p)Blog ID -> Autonumber
Blog Post -> Memo
Username ->Text
(p means primary key)
So I want to link User to blog as a one to many relationship. But All i'm getting is a one to one. The user shouldn't have one blog post but many, if you know what i mean.
Please help
So I have so far created two tables, A user table and a blog table.
The user table will hold User Details and the blog table will hold there blog input.
The field's in User includes:
(p)Username -> Text
Password ->Text
E-mail -> Text
Name -> Text
Last Name ->Text
The field's in Blog include
(p)Blog ID -> Autonumber
Blog Post -> Memo
Username ->Text
(p means primary key)
So I want to link User to blog as a one to many relationship. But All i'm getting is a one to one. The user shouldn't have one blog post but many, if you know what i mean.
Please help