To Lecture Notes

ISP 121 -- 4/14/08

 

Reference in Course Documents:   Access Tutorial

 

Review Questions

  1. Why is using Filter usually better than using Find to locate data in an Access table?
    Ans: When using find, the format of the field value must be exact, for example 90.0 instead of 90. If the format is not exact, the value might not be found.

  2. Give a reason reason why you might prefer the Text datatype over the Number datatype for a column.
    Ans: Values of a field containing Text values can be any string of characters. For example "34544-1002" might be entered as a zip code. This value would not be possible for a Number datatype.

  3. Give a reason why you might prefer the Number datatype over the Text datatype for a column.
    Ans: One cannot do arithmetic on Text values. Also, numbers will not sort in numerical order if they are Text values.

  4. In the StateTemperatures Example that you used in Activity 2, how would you create a filter to show all of the rows where the average temperature in January was greater than the average temperature in April?
    Ans: Enter January for the field and >[Data].[April] for the Criterion.

 

Database Queries

 

Database Normalization

 

Homework 1