Miscrosoft Office.
I am saving the database with an .mdb extension. I called it abc.
create a query.
I am creating a field called idno that has a data type of text and is 5 characters long.
Now I have entered information about 3 fields.
My fifth field is numeric and it is integer which establishes the size according to the rules in Access.
I do this by clicking on the key icon.
I am saving the table.
Data keyed into the table.
Now I will create a query.
I want to see all records where credit > 12.
The results of my query with credits > 12.
nothing.
Now I am asking two questions in an AND relationship.
Literals that are numbers are not put in quotes.
Results of asking if credits > 12 and major = "CI".
If both are true, I display. Otherwise I do nothing.
Note the OR is on the next line.
Results of the check to see if major = "CI" OR credits > 12.
credits >12, if so I display.