Queries
A query is a statement (in a language like SQL) to define a table by extracting information from existing tables
Once the basic tables of a database are set up, the remaining processing is usually derived using queries
SELECT Visit.Date, Visit.Tracking, Visit.HepBO
FROM Visit
WHERE (((Visit.Tracking)<>"") AND ((Visit.HepBR)=Yes));