| Databases > General
What is a database? The standard database for internet use is MySQL which is a version of the industry standard SQL (Structured Query Language). If you wanted to store information about 5 peoples preferred bedtime drink then you could write it out longhand in text form as... Or as a database this information could be stored similar to the following grid (table).
If we do a database lookup for Mary we see that her beverage preferences are: Or if we want to find out who prefers tea as a bedtime drink we find that John does.
For instance, if your website operates a monthly email newsletter that visitors can subscribe to then the chances are that you'll want to store some basic information about each user on your website. This way, you could send each user a personalised newsletter rather than a 'generalised' one. You might even want to 'filter' the recipient list by 'age' for instance... A text list of your contacts... Name:Address:Telephone:Email is a simple database. The problem is... As the contact list gets ever longer, filling numerous pages, you need a mechanism to extract the data on a 'line-by-line' basis. It would also be useful to be able to update or modify a line of information as well; if a contact changes their address or telephone number etc.
|
unfinished helpfile..... more soon! |