table help PLEASE!!!!!

R

Rebecca

can someone please help me i am currently trying to create
a database on software used within a company and also all
of the computers used within the company. can anyone give
me any idears to the tables i need and the attributes i
should put in them.

cheers!!
Becky
 
D

Dan Artuso

Hi Becky,
Here's some thoughts on the tables. The attributes really depend
on what is relevant to you to keep track of.

You'll need at least something like this:

Users table
Software table
Computers table (if you want to keep track of hardware it gets more complicated)
Rooms

Now to relate everything you'll need
UserComputer (contains the User primary key and Computer pk)
ComputerSoftware (contains Computer pk and Software pk)
UsersRooms (contains Users pk and Rooms pk)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top