PC Review


Reply
Thread Tools Rate Thread

Basic Layout and Design Help

 
 
.:RoKsTaR:.
Guest
Posts: n/a
 
      6th May 2010
Hello again I should have bookmarked my last thread so I could add to it :P

Here goes again

Ok this is what I have so far How's it look?

address - addressid, address, city, province, postalcode
phone- phoneid, phonenum, extension, phlocation
email - emailid email, emailLocation
webidentity – webidentityid, imaccount1, imaccount2, twitter, facebook,
linkedin, website

people – peopleid, firstname, lastname
people_address – id, peopleid, addressed
people_phone – id, peopleid, phoneid
people_email – id, peopleid, emailed
people_webidentity – id, peopled, webidentityid
relation – id, peopleid, peopleid
student – id, peopleid, lessonday, gender, age, status
guardian – id, peopleid, relationship, primarycontact (this is a yes or no
field)


Notes on this table:
I'm a music teacher who teaches an average of 50 students at a time. I'm
trying to build a database track contact info, invoice students, and track
attendance. I'm starting off with the contact portion of the database and
once that is done I'll move on to the rest.

Cheers!
 
Reply With Quote
 
 
 
 
Jeff Boyce
Guest
Posts: n/a
 
      6th May 2010
Your [student] table raises some questions, but the rest look pretty good.

When ever I see [age] as a field, I wonder if you're willing to go back
through your table every day or so and update that field to reflect their
ages AS OF TODAY!

Also, I question [lessonday] and [status] as attributes of a person who is a
student. Will you never have more than one of these sets per student? If
you do, how do you distinguish one record from another?

(a bit more info, please...)

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

".:RoKsTaR:." <(E-Mail Removed)> wrote in message
news:C32FA4BA-4CCB-4BAE-9D41-(E-Mail Removed)...
> Hello again I should have bookmarked my last thread so I could add to
> it :P
>
> Here goes again
>
> Ok this is what I have so far How's it look?
>
> address - addressid, address, city, province, postalcode
> phone- phoneid, phonenum, extension, phlocation
> email - emailid email, emailLocation
> webidentity - webidentityid, imaccount1, imaccount2, twitter, facebook,
> linkedin, website
>
> people - peopleid, firstname, lastname
> people_address - id, peopleid, addressed
> people_phone - id, peopleid, phoneid
> people_email - id, peopleid, emailed
> people_webidentity - id, peopled, webidentityid
> relation - id, peopleid, peopleid
> student - id, peopleid, lessonday, gender, age, status
> guardian - id, peopleid, relationship, primarycontact (this is a yes or no
> field)
>
>
> Notes on this table:
> I'm a music teacher who teaches an average of 50 students at a time. I'm
> trying to build a database track contact info, invoice students, and track
> attendance. I'm starting off with the contact portion of the database and
> once that is done I'll move on to the rest.
>
> Cheers!



 
Reply With Quote
 
.:RoKsTaR:.
Guest
Posts: n/a
 
      6th May 2010
I'm gonna change it to DOB but have a function to calculate by the date
entered whether the student is a child, adult, or teen. For adults, I'll
just enter a generic date like 01/01/1992 so they don't need to give me their
info unless they want too

Status distinguishes between current or retired student
Lesson Day just tells me which day their lesson is on. This changes
throughout the year for some students depending on their schedule

"Jeff Boyce" wrote:

> Your [student] table raises some questions, but the rest look pretty good.
>
> When ever I see [age] as a field, I wonder if you're willing to go back
> through your table every day or so and update that field to reflect their
> ages AS OF TODAY!
>
> Also, I question [lessonday] and [status] as attributes of a person who is a
> student. Will you never have more than one of these sets per student? If
> you do, how do you distinguish one record from another?
>
> (a bit more info, please...)
>
> Regards
>
> Jeff Boyce
> Microsoft Access MVP
>
> --
> Disclaimer: This author may have received products and services mentioned
> in this post. Mention and/or description of a product or service herein
> does not constitute endorsement thereof.
>
> Any code or pseudocode included in this post is offered "as is", with no
> guarantee as to suitability.
>
> You can thank the FTC of the USA for making this disclaimer
> possible/necessary.
>
> ".:RoKsTaR:." <(E-Mail Removed)> wrote in message
> news:C32FA4BA-4CCB-4BAE-9D41-(E-Mail Removed)...
> > Hello again I should have bookmarked my last thread so I could add to
> > it :P
> >
> > Here goes again
> >
> > Ok this is what I have so far How's it look?
> >
> > address - addressid, address, city, province, postalcode
> > phone- phoneid, phonenum, extension, phlocation
> > email - emailid email, emailLocation
> > webidentity - webidentityid, imaccount1, imaccount2, twitter, facebook,
> > linkedin, website
> >
> > people - peopleid, firstname, lastname
> > people_address - id, peopleid, addressed
> > people_phone - id, peopleid, phoneid
> > people_email - id, peopleid, emailed
> > people_webidentity - id, peopled, webidentityid
> > relation - id, peopleid, peopleid
> > student - id, peopleid, lessonday, gender, age, status
> > guardian - id, peopleid, relationship, primarycontact (this is a yes or no
> > field)
> >
> >
> > Notes on this table:
> > I'm a music teacher who teaches an average of 50 students at a time. I'm
> > trying to build a database track contact info, invoice students, and track
> > attendance. I'm starting off with the contact portion of the database and
> > once that is done I'll move on to the rest.
> >
> > Cheers!

>
>
> .
>

 
Reply With Quote
 
John W. Vinson
Guest
Posts: n/a
 
      6th May 2010
On Thu, 6 May 2010 14:20:05 -0700, .:RoKsTaR:.
<(E-Mail Removed)> wrote:

>I'm gonna change it to DOB but have a function to calculate by the date
>entered whether the student is a child, adult, or teen.


Agegroup: IIF(DateDiff("yyyy", [DOB], Date()) < 13, "Child", DateDiff("yyyy",
[DOB], Date()) < 20, "Teen", "Adult")

should do it...
--

John W. Vinson [MVP]
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need some basic layout help Matthew Microsoft Frontpage 2 7th Sep 2010 10:04 PM
Visual Basic Editor Layout =?Utf-8?B?bmlyMDIw?= Microsoft Excel Programming 2 28th Sep 2007 01:18 PM
layout design - layout tables or layers? =?Utf-8?B?cmFuY2gtY3V0dGVy?= Microsoft Frontpage 5 10th Jan 2005 03:18 PM
Re: Basic layout and guidelines Steve Rindsberg Microsoft Powerpoint 0 7th Jul 2003 07:16 PM
Re: Basic table design - design question John Vinson Microsoft Access Getting Started 1 26th Jun 2003 05:22 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:19 AM.