Forum: Database Design Jan 31st, 2008 |
| Replies: 2 Views: 1,703 I dont know too much about access, but Im sure you can input sql commands somewhere, heres the sql i would use
SELECT employee_ID
FROM available_numbers
LIMIT 0, 1
the LIMIT 0, 1 just picks... |
Forum: Database Design Jan 23rd, 2008 |
| Replies: 2 Views: 1,228 Ok here is how i would design the database for this, it is in the format
TABLENAME(primary_key**, foreign_key *, other field, other field)//notes
(each table has start_date and end_date at the end... |
Forum: Database Design Jan 18th, 2008 |
| Replies: 2 Views: 1,185 I would reccomend using www.w3schools.com (http://www.w3schools.com) for any web-based learning. There are a variety of ways you post the cookies to the users machine, but i reccomend php as being... |
Forum: Database Design Jan 17th, 2008 |
| Replies: 3 Views: 2,566 I am not too clear on what you are asking for, so I shall give you a solution to what i think it is, if i am wrong, post back with further queries.
First of all what tables you need depend... |
Forum: Database Design Jan 17th, 2008 |
| Replies: 1 Views: 1,658 Ok I can see two ways to go with this, both with only 3 tables;
the first would be to simplify what you have:
PRODUCT(product_ID*, name, desc)
VARIATION(var_ID*, colour, weight, strength, price)... |