Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
1.00/5 (5 votes)
See more:
I want to create an ACCESS database of e-learning includes two class and a number of students and 4 tests and find out any test students liked by data mining
Posted
Comments
OriginalGriff 28-Jan-16 15:56pm    
And?
What have you tried?
Where are you stuck?
What help do you need?

1 solution

To begin with you need to think about what you are going to use the database for, and maybe who will use it.

What kind of information do I want/have to store?
What kind of information/reports do I want to get from the database?

Then you need to create a database structure. In order to do that you can start with answering the questions below:

What tables should I have? (What data belongs in which table)
What are the relations between the tables?
What are the queries I will ask the database to generate the reports?

Relational Databases for Dummies[^]
Absolute Beginner's Guide to Database Design[^]

So far you can use pen and paper to create your structure. It is not really dependent on your choice of database.

As a beginner it is also good to know about database normalization. By following the rules for a good database design, you will spend a lot of time in the beginning, for sure, but much less time later on.
See 1NF, 2NF, 3NF and BCNF in Database Normalization[^]

To create your database specifically in Access, you can use the following links:

Create an Access database - Access[^]
How to Make a Database Using MS Access (with Pictures)[^]

As you have noticed I haven't told you any specifics about your design.
One reason for this is that it is not exactly clear what you want to do.
I think that you will be able to sort it out by reading the links I have provided.

Good luck
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900