TAGS: Access, Computers, Databases, Microsoft, Programming, Tech
A Query selects data to work with. The name of a Query is usually prefixed with qry.
A Recordset is a datasheet representation of the data from the desired Table(s) and/or Query(ies) selected by a Query. Recordsets are just like tables in that they can be browsed, filtered, printed, and updated.
The Criteria row in the Design View can be used to pick specific fields. Expressions can be entered enclosed in brackets ( [ ] ) to indicate a Parameter, i.e. an expression to be as criteria during runtime.
The Crosstab row in the Design View can be used to form columns grouping the fields, rows that either group fields or perform Total Functions, and cells that have the values.
Queries come in two kinds:
The Unique Records Property of a Query is equivalent to the SELECT DISTINCTROW statement in SQL and takes two joined tables, and only shows records from the first table. The Unique Values Property of a Query is equivalent to the SELECT DISTINCT statement in SQL and takes one or more tables, and only shows records whose shown field values are never duplicated. Only one of these Properties can be used at a time. To use either Property, its default value of "No" must be converted to "Yes." Both properties only apply to Select, Append, and Make-Table Queries.
The Totals row in the Design View of Queries can be used to group records and/or perform Total Functions.
Page Modified: (Hand noted: 2007-10-12 18:17:36Z) (Auto noted: 2007-11-17 06:45:38Z)