Row: Ans: Contains all the data related to an observation such as a person, airline ticket, transaction, listing, etc.
Column: Ans: Contains all of the values in the rows for a specific data item.
Field: Ans: A single value in a table. The intersection of a row and a column.
Filter: Ans: Using specified criteria to select a subset of the rows in the table.
Ans: Both Access and SPSS present data in the form of tables. SPSS uses different terminology than Access:
Access Term | SPSS Term |
---|---|
Table | Database |
Row | Observation |
Column | Variable |
Field | Data Value |
Ans: Text and Number. Other useful datatypes are Yes/No, Data/Time, and Currency.
Ans: To obtain the Filter Grid: Home Tab >> Advanced >> Advanced Filter/Sort. To apply a filter or sort: Home Tab >> Advanced >> Apply Filter/Sort. You can also right click above the Filter/Sort grid and select Apply Filter/Sort.
Ans: Ascending, Descending, Not Sorted.
Field: | Gender | Age | Name |
Sort: | Ascending | Descending | |
Criteria: | |||
or: |
to this table:
PersonData | ||
---|---|---|
Name | Gender | Age |
Judy | F | 39 |
Michael | M | 29 |
Alice | F | 32 |
Megan | F | 39 |
Pat | M | 41 |
Alan | M | 32 |
Gretchen | F | 52 |
This is the example database persons2.accdb.
Ans: The rows are sorted by gender. Within the rows with gender F, the rows are sorted by descending age.
Field: | Gender | Age | Name |
Sort: | Descending | Ascending | |
Criteria: | "F" | ||
or: |
to the preceding table?
Ans: All rows with gender F are selected. Those rows are sorted by descending age. For those rows tied with the same age, they are sorted by ascending name.
Ans:
Field: | Age |
Sort: | |
Criteria: | <30 |
or: |
greater than 30?
Ans:
Field: | Age |
Sort: | |
Criteria: | >30 |
or: |
between 35 and 45?
Ans:
Field: | Age |
Sort: | |
Criteria: | >35 and <45 |
or: |
less than 30 or greater than 40?
Ans:
Field: | Age |
Sort: | |
Criteria: | <30 |
or: | >40 |
PersonData | ||
---|---|---|
Name | Gender | Age |
Judy | F | 27 |
Michael | M | 29 |
Alice | F | 32 |
Name is the primary key.
mpor
PersonData | |||
---|---|---|---|
LastName | FirstName | Gender | Age |
Chen | Judy | F | 27 |
Cooper | Alice | M | 59 |
Smith | Alice | F | 32 |
Suarez | Michael | M | 29 |
Smith | Stan | M | 63 |
Here LastName and FirstName together form the primary key. Here is the database: