Databases
are designed to offer an organized mechanism for storing, managing and retrieving information. They do so through the use of
tables . If youre familiar with spreadsheets like Microsoft Excel, youre probably already accustomed to storing data in tabular form. Its not much of a stretch to make the leap from spreadsheets to databases. Lets take a look.
Database Tables
Just like Excel tables, database tables consist of
columns and
rows . Each column contains a different type of
attribute and each row corresponds to a single
record . For example, imagine that we were building a database
table that contained names and telephone numbers. Wed probably set up columns named FirstName, LastName and TelephoneNumber. Then wed simply start adding rows underneath those columns that contained the data were planning to store.
0 Comments