Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Microsoft Office Access
Quiz 11: Enhanced Database Techniques
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 81
Short Answer
Macros that work with ""user interface"" objects,such as forms,reports,and buttons,are known as ________ macros.
Question 82
Short Answer
If your SQL query does not include a WHERE statement,then ________ records will be selected.
Question 83
Short Answer
________ is the data retrieval and data manipulation language of all the industry-leading databases.
Question 84
Short Answer
In SQL,the ________ statement is used to retrieve data from a table.
Question 85
Short Answer
The keyword used in SQL to establish specify the table where the fields can be found is ________.
Question 86
Short Answer
An SQL ________ defines the purpose and the structure of an SQL statement.
Question 87
Short Answer
A(n)________ can be used to automate repetitive tasks or perform specific actions.
Question 88
Short Answer
________ are the individual steps that make up a macro.
Question 89
Short Answer
Structured Query Language is the industry-standard language for defining,manipulating,and retrieving the ________ in a database.
Question 90
Short Answer
________ macros can help to validate and ensure the accuracy of data in a table.
Question 91
Short Answer
The keyword used in SQL to establish criteria is ________.
Question 92
Short Answer
When business logic requires the comparison of two or more fields,you need to use a(n)________ macro.
Question 93
Matching
Match the SQL keywords at the top with what would follow those words from the list at the bottom to accomplish the following: display three fields (Field1,Field2,Field3)from the Sample table,sorted by Field1 in ascending order,and with only those records where Field2 equals "FrogLegs" and put all those in a new table called "Delicacies".
Premises:
Responses:
INTO
Field2 DESC
WHERE
Field1,Field2,Field3
ORDER BY
Sample
Premises:
INTO
WHERE
ORDER BY
Responses:
Field2 DESC
Field1,Field2,Field3
Sample