Deck 22: Using Macros and SQL in Access: Advanced Techniques

Full screen (f)
exit full mode
Question
A ________ is a series of actions that can be programmed to automate tasks.

A) macro
B) table
C) form
D) report
Use Space or
up arrow
down arrow
to flip the card.
Question
What do you use to create a stand-alone macro?

A) Macro Designer
B) An automated task
C) An Embedded macro
D) An event
Question
A(n)________ executes a series of actions when a table event occurs.

A) data macro
B) stand-alone macro
C) embedded macro
D) event-driven macro
Question
A(n)________ is attached to an event of a control on a form or report.

A) embedded macro
B) stand-alone macro
C) event macro
D) property macro
Question
A(n)________ is a variable,constant,or expression that is needed to produce the output for an action.

A) argument
B) description
C) explanation
D) message
Question
What feature does Access include to aid in creating a macro?

A) Macro Designer
B) Macro Editor
C) Macro Maker
D) Named Data Macro
Question
Data macros are used to ensure the accuracy of data in a(n):

A) table.
B) report.
C) embedded macro.
D) stand-alone macro.
Question
A(n)________ is a database object that you create and use independently of other controls or objects.

A) stand-alone macro
B) procedure macro
C) embedded macro
D) command macro
Question
A(n)________ is a macro that executes when an event attached to a control or object occurs.

A) embedded macro
B) procedure macro
C) stand-alone macro
D) command macro
Question
Which of the following examples is NOT an event attached to an object?

A) On Close
B) After Update
C) On Click
D) Select
Question
Like stand-alone macros and embedded macros,what does a data macro use?

A) Macro Designer
B) Command Wizard
C) Design View
D) MessageBox
Question
The ________ event is triggered each time you enter data into a field on a form.

A) After Update
B) On Close
C) On Click
D) Select
Question
Which of the following is NOT a method for adding actions to a macro with the Macro Designer?

A) Add a command button to a New Action command.
B) Click the Add New Action and choose the action you want to add to your macro.
C) Type the action name directly into the Add New Action box.
D) Locate an action in the Action Catalog and double-click it to add it to the macro.
Question
The ________ was designed to make it easier to create macros,to modify macros,and to add or delete actions from macros.

A) Macro Designer
B) Macro Maker
C) Macro Editor
D) Named Data Macro
Question
Once a macro has been created,you should ________ to initiate the tasks.

A) run the macro
B) convert the macro
C) display the macro
D) control the macro
Question
A(n)________ attaches programming logic to tables.

A) data macros
B) stand-alone macros
C) embedded macros
D) event-driven macros
Question
What do you use to create a stand-alone macro?

A) Macro Designer
B) Macro Maker
C) Macro Editor
D) Named Data Macro
Question
________ can be converted to VBA without having to write any complex programming code.

A) Macros
B) Tables
C) Forms
D) Reports
Question
What are the two methods of programming used by Access?

A) Creating macros and Visual Basic for applications
B) Creating macros and Adobe Acrobat
C) Adobe Acrobat and Visual Basic for Applications
D) Visual Basic for Applications and Hypertext Markup Language
Question
When does an event occur?

A) When a user enters, edits or deletes data and when users open, use and close forms and reports
B) When the Navigation Pane is displayed and when the macro can be run independently
C) When the Navigation Pane is hidden and when the macro can be run independently
D) When Access executes steps stored in the table lookup fields
Question
The ________ keyword instructs Access to return the specific fields from one or more tables or queries.

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
Question
What character is used to select all the fields in a table in the Design view of a query?

A) Asterisk character (*)
B) Number sign (#)
C) At symbol (@)
D) Ampersand (&)
Question
Which SQL keyword specifies the table (or tables)that will be searched?

A) FROM
B) SELECT
C) WHERE
D) ORDER BY
Question
All SQL statements must end with a:

A) semi-colon (;).
B) colon (:).
C) question mark (?).
D) bracket({}).
Question
After you create a macro,you initiate all its tasks by running it.
Question
Which SQL statement sets the criteria for the rows in the results?

A) WHERE
B) SELECT
C) FROM
D) ORDER BY
Question
Macros can be converted to VBA without having to write any complex programming code.
Question
All Access queries use ________ behind the scenes to extract data from tables.

A) SQL statement
B) Oracle statement
C) Sybase statement
D) Structured statement
Question
Which of the following is NOT a reason for using an SQL statement for a record source?

A) You can create a form or report without creating a new query
B) It is easier to transfer a form or report to another database
C) You can click the View arrow and select SQL View from the list of options
D) You can construct the record source of a report at run-time using VBA
Question
A(n)________ is a variable,constant,or expression that is needed to produce the output for an action.

A) argument
B) message
C) beep
D) title
Question
Which of the following inherits the logic of the table?

A) A form based on a table that contains a data macro
B) A report based on a table that contains a data macro
C) A query based on a table that contains a data macro
D) An imported table that contains similar data
Question
Which type of macro can only be used with table events?

A) Data macros
B) Stand-alone macros
C) Embedded macros
D) Event-driven macros
Question
Most SQL statements begin with ________ and end with ________.

A) SELECT; semicolon (;)
B) SELECT; colon (:)
C) ON CLICK; comma (,)
D) ORDER BY; period (.)
Question
Which SQL statement is used to retrieve data from tables in a database?

A) SQL SELECT
B) SQL FROM
C) SQL WHERE
D) SQL ORDER BY
Question
In a SELECT SQL statement,if two fields from two different tables have the same name,what follows the table name prefix?

A) Dot (.)
B) Comma (,)
C) Apostrophe (')
D) Quotation marks (")
Question
Which SQL statement determines how the rows will be sorted?

A) ORDER BY
B) SELECT
C) FROM
D) WHERE
Question
Which type of events trigger data macros?

A) Table events
B) Report events
C) Form events
D) Query events
Question
The SQL WHERE keyword specifies the:

A) criteria that records must match to be included in the results.
B) table that will be searched.
C) specific field to be included in the query.
D) specific fields to include in the query.
Question
Access provides two methods of programming creating macros and creating procedures using Visual Basic Applications.
Question
On Close is an example of a(n):

A) event attached to an object.
B) event After Update.
C) update event.
D) new action.
Question
An SQL keyword defines the purpose and the structure of an SQL statement.
Question
An SQL SELECT statement is used to retrieve reports from tables in a database.
Question
An SQL keyword defines the purpose and the structure of a SQL statement.
Question
There are three keywords found in a typical SQL SELECT statement: SELECT,FROM,and ORDER BY.
Question
Data macros can be accessed from anywhere in the database,including running them from within another macro.
Question
The SELECT keyword instructs Access to return the specific fields from one or more tables or queries.
Question
Data macros,like stand-alone macros and embedded macros,use the Macro Designer.
Question
A form based on a table that contains a macro inherits the logic of the table.
Question
Access queries use an Oracle statement behind the scenes to extract data from tables.
Question
SQL is the data retrieval and data manipulation language of all the industry-leading databases.
Question
The easiest way to learn more advanced SQL statements is to create Access queries in Design view and then view the SQL statement in SQL view.
Question
Instead of specifying the individual field names in SQL,you can use the asterisk character (*)to select all of the fields.
Question
The WHERE keyword specifies how the rows will be sorted.
Question
In a SELECT statement,field names are listed after the SELECT statement and are separated by commas.
Question
Microsoft has developed its own version of SQL for Access,which varies slightly from the industry standard SQL language.
Question
Action queries each have their equivalent SQL keywords and syntax.
Question
Data macros can only be used with report events.
Question
Most SQL statements begin with SELECT and end with a colon(:).
Question
The ORDER BY keyword is used to sort the records by a certain field.
Question
If your query does not include the WHERE keyword,the query will return all records from the table.
Question
Match between columns
WHERE
specifies the table or tables that will be searched
WHERE
sorts the records by a certain field in either ascending or descending order
WHERE
instructs Access to return the specific fields from one or more tables
WHERE
defines the purpose and the structure of an SQL statement
WHERE
specifies the criteria that records must match to be included in the results
SELECT
specifies the table or tables that will be searched
SELECT
sorts the records by a certain field in either ascending or descending order
SELECT
instructs Access to return the specific fields from one or more tables
SELECT
defines the purpose and the structure of an SQL statement
SELECT
specifies the criteria that records must match to be included in the results
ORDER BY
specifies the table or tables that will be searched
ORDER BY
sorts the records by a certain field in either ascending or descending order
ORDER BY
instructs Access to return the specific fields from one or more tables
ORDER BY
defines the purpose and the structure of an SQL statement
ORDER BY
specifies the criteria that records must match to be included in the results
SQL
specifies the table or tables that will be searched
SQL
sorts the records by a certain field in either ascending or descending order
SQL
instructs Access to return the specific fields from one or more tables
SQL
defines the purpose and the structure of an SQL statement
SQL
specifies the criteria that records must match to be included in the results
FROM
specifies the table or tables that will be searched
FROM
sorts the records by a certain field in either ascending or descending order
FROM
instructs Access to return the specific fields from one or more tables
FROM
defines the purpose and the structure of an SQL statement
FROM
specifies the criteria that records must match to be included in the results
Question
Embedded macros are always attached to an event of a control on a form or report.
Question
The Macro Designer enables you to create and edit macros.
Question
________ is the industry standard language for defining,manipulating,and retrieving data in a database.
Question
MessageBox actions contain the arguments Message,Beep,Type,and Title.
Question
One reason for using a SQL statement for a record source is that it is easier to transfer a form or report to another database because the record source is contained in the object.
Question
When you add a macro to an event,Access embeds a macro in the object or control.
Question
When you close a form or a report,the On Close event is triggered and Access executes the steps stored in the macro associated with the On Close event.
Question
The ORDER BY clause must be added to the beginning of an SQL statement after the WHERE clause.
Question
When modifying a macro in the Macro Designer,it is not necessary to save because Access saves automatically.
Question
The record source of a form or a report in Access can be either a table or a query,depending on the complexity of the data.
Question
Match between columns
embedded macro
a series of actions that can be programmed to automate tasks
embedded macro
executes a series of actions when a table event occurs
embedded macro
database object that can be created and used independently of other controls or objects
embedded macro
executes when an event attached to a control or object occurs
stand-alone macro
a series of actions that can be programmed to automate tasks
stand-alone macro
executes a series of actions when a table event occurs
stand-alone macro
database object that can be created and used independently of other controls or objects
stand-alone macro
executes when an event attached to a control or object occurs
data macro
a series of actions that can be programmed to automate tasks
data macro
executes a series of actions when a table event occurs
data macro
database object that can be created and used independently of other controls or objects
data macro
executes when an event attached to a control or object occurs
macro
a series of actions that can be programmed to automate tasks
macro
executes a series of actions when a table event occurs
macro
database object that can be created and used independently of other controls or objects
macro
executes when an event attached to a control or object occurs
Question
Data macros attach programming logic to tables.
Question
If you have to perform a repetitive task in Access,you may consider building a(n)________ to automate the task.
Question
An embedded macro is a database object that you create and use independently of other controls or objects.
Question
Match between columns
event
a variable,constant,or expression that is needed to product the output for an action
event
occurs when a user enters,edits,or deleted data
event
user interface that enables you to create and edit macros
event
block of text that is used to retrieve data from the tables in a database
event
industry-standard language for defining,manipulating,and retrieving data in a database
Structured Query Language
a variable,constant,or expression that is needed to product the output for an action
Structured Query Language
occurs when a user enters,edits,or deleted data
Structured Query Language
user interface that enables you to create and edit macros
Structured Query Language
block of text that is used to retrieve data from the tables in a database
Structured Query Language
industry-standard language for defining,manipulating,and retrieving data in a database
SQL SELECT statement
a variable,constant,or expression that is needed to product the output for an action
SQL SELECT statement
occurs when a user enters,edits,or deleted data
SQL SELECT statement
user interface that enables you to create and edit macros
SQL SELECT statement
block of text that is used to retrieve data from the tables in a database
SQL SELECT statement
industry-standard language for defining,manipulating,and retrieving data in a database
Macro Designer
a variable,constant,or expression that is needed to product the output for an action
Macro Designer
occurs when a user enters,edits,or deleted data
Macro Designer
user interface that enables you to create and edit macros
Macro Designer
block of text that is used to retrieve data from the tables in a database
Macro Designer
industry-standard language for defining,manipulating,and retrieving data in a database
argument
a variable,constant,or expression that is needed to product the output for an action
argument
occurs when a user enters,edits,or deleted data
argument
user interface that enables you to create and edit macros
argument
block of text that is used to retrieve data from the tables in a database
argument
industry-standard language for defining,manipulating,and retrieving data in a database
Question
To run one macro from within another,use the RunDataMacro action.
Question
Macros can be converted to VBA.
Question
Embedded macros can be used to validate the data in a field or a record.
Question
The basic structure of an SQL statement is SELECT,FROM,WHERE,and ORDER BY.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 22: Using Macros and SQL in Access: Advanced Techniques
1
A ________ is a series of actions that can be programmed to automate tasks.

A) macro
B) table
C) form
D) report
A
2
What do you use to create a stand-alone macro?

A) Macro Designer
B) An automated task
C) An Embedded macro
D) An event
A
3
A(n)________ executes a series of actions when a table event occurs.

A) data macro
B) stand-alone macro
C) embedded macro
D) event-driven macro
A
4
A(n)________ is attached to an event of a control on a form or report.

A) embedded macro
B) stand-alone macro
C) event macro
D) property macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
5
A(n)________ is a variable,constant,or expression that is needed to produce the output for an action.

A) argument
B) description
C) explanation
D) message
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
6
What feature does Access include to aid in creating a macro?

A) Macro Designer
B) Macro Editor
C) Macro Maker
D) Named Data Macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
7
Data macros are used to ensure the accuracy of data in a(n):

A) table.
B) report.
C) embedded macro.
D) stand-alone macro.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
8
A(n)________ is a database object that you create and use independently of other controls or objects.

A) stand-alone macro
B) procedure macro
C) embedded macro
D) command macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
9
A(n)________ is a macro that executes when an event attached to a control or object occurs.

A) embedded macro
B) procedure macro
C) stand-alone macro
D) command macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
10
Which of the following examples is NOT an event attached to an object?

A) On Close
B) After Update
C) On Click
D) Select
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
11
Like stand-alone macros and embedded macros,what does a data macro use?

A) Macro Designer
B) Command Wizard
C) Design View
D) MessageBox
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
12
The ________ event is triggered each time you enter data into a field on a form.

A) After Update
B) On Close
C) On Click
D) Select
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
13
Which of the following is NOT a method for adding actions to a macro with the Macro Designer?

A) Add a command button to a New Action command.
B) Click the Add New Action and choose the action you want to add to your macro.
C) Type the action name directly into the Add New Action box.
D) Locate an action in the Action Catalog and double-click it to add it to the macro.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
14
The ________ was designed to make it easier to create macros,to modify macros,and to add or delete actions from macros.

A) Macro Designer
B) Macro Maker
C) Macro Editor
D) Named Data Macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
15
Once a macro has been created,you should ________ to initiate the tasks.

A) run the macro
B) convert the macro
C) display the macro
D) control the macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
16
A(n)________ attaches programming logic to tables.

A) data macros
B) stand-alone macros
C) embedded macros
D) event-driven macros
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
17
What do you use to create a stand-alone macro?

A) Macro Designer
B) Macro Maker
C) Macro Editor
D) Named Data Macro
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
18
________ can be converted to VBA without having to write any complex programming code.

A) Macros
B) Tables
C) Forms
D) Reports
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
19
What are the two methods of programming used by Access?

A) Creating macros and Visual Basic for applications
B) Creating macros and Adobe Acrobat
C) Adobe Acrobat and Visual Basic for Applications
D) Visual Basic for Applications and Hypertext Markup Language
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
20
When does an event occur?

A) When a user enters, edits or deletes data and when users open, use and close forms and reports
B) When the Navigation Pane is displayed and when the macro can be run independently
C) When the Navigation Pane is hidden and when the macro can be run independently
D) When Access executes steps stored in the table lookup fields
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
21
The ________ keyword instructs Access to return the specific fields from one or more tables or queries.

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
22
What character is used to select all the fields in a table in the Design view of a query?

A) Asterisk character (*)
B) Number sign (#)
C) At symbol (@)
D) Ampersand (&)
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
23
Which SQL keyword specifies the table (or tables)that will be searched?

A) FROM
B) SELECT
C) WHERE
D) ORDER BY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
24
All SQL statements must end with a:

A) semi-colon (;).
B) colon (:).
C) question mark (?).
D) bracket({}).
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
25
After you create a macro,you initiate all its tasks by running it.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
26
Which SQL statement sets the criteria for the rows in the results?

A) WHERE
B) SELECT
C) FROM
D) ORDER BY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
27
Macros can be converted to VBA without having to write any complex programming code.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
28
All Access queries use ________ behind the scenes to extract data from tables.

A) SQL statement
B) Oracle statement
C) Sybase statement
D) Structured statement
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
29
Which of the following is NOT a reason for using an SQL statement for a record source?

A) You can create a form or report without creating a new query
B) It is easier to transfer a form or report to another database
C) You can click the View arrow and select SQL View from the list of options
D) You can construct the record source of a report at run-time using VBA
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
30
A(n)________ is a variable,constant,or expression that is needed to produce the output for an action.

A) argument
B) message
C) beep
D) title
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
31
Which of the following inherits the logic of the table?

A) A form based on a table that contains a data macro
B) A report based on a table that contains a data macro
C) A query based on a table that contains a data macro
D) An imported table that contains similar data
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
32
Which type of macro can only be used with table events?

A) Data macros
B) Stand-alone macros
C) Embedded macros
D) Event-driven macros
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
33
Most SQL statements begin with ________ and end with ________.

A) SELECT; semicolon (;)
B) SELECT; colon (:)
C) ON CLICK; comma (,)
D) ORDER BY; period (.)
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
34
Which SQL statement is used to retrieve data from tables in a database?

A) SQL SELECT
B) SQL FROM
C) SQL WHERE
D) SQL ORDER BY
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
35
In a SELECT SQL statement,if two fields from two different tables have the same name,what follows the table name prefix?

A) Dot (.)
B) Comma (,)
C) Apostrophe (')
D) Quotation marks (")
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
36
Which SQL statement determines how the rows will be sorted?

A) ORDER BY
B) SELECT
C) FROM
D) WHERE
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
37
Which type of events trigger data macros?

A) Table events
B) Report events
C) Form events
D) Query events
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
38
The SQL WHERE keyword specifies the:

A) criteria that records must match to be included in the results.
B) table that will be searched.
C) specific field to be included in the query.
D) specific fields to include in the query.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
39
Access provides two methods of programming creating macros and creating procedures using Visual Basic Applications.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
40
On Close is an example of a(n):

A) event attached to an object.
B) event After Update.
C) update event.
D) new action.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
41
An SQL keyword defines the purpose and the structure of an SQL statement.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
42
An SQL SELECT statement is used to retrieve reports from tables in a database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
43
An SQL keyword defines the purpose and the structure of a SQL statement.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
44
There are three keywords found in a typical SQL SELECT statement: SELECT,FROM,and ORDER BY.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
45
Data macros can be accessed from anywhere in the database,including running them from within another macro.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
46
The SELECT keyword instructs Access to return the specific fields from one or more tables or queries.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
47
Data macros,like stand-alone macros and embedded macros,use the Macro Designer.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
48
A form based on a table that contains a macro inherits the logic of the table.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
49
Access queries use an Oracle statement behind the scenes to extract data from tables.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
50
SQL is the data retrieval and data manipulation language of all the industry-leading databases.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
51
The easiest way to learn more advanced SQL statements is to create Access queries in Design view and then view the SQL statement in SQL view.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
52
Instead of specifying the individual field names in SQL,you can use the asterisk character (*)to select all of the fields.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
53
The WHERE keyword specifies how the rows will be sorted.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
54
In a SELECT statement,field names are listed after the SELECT statement and are separated by commas.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
55
Microsoft has developed its own version of SQL for Access,which varies slightly from the industry standard SQL language.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
56
Action queries each have their equivalent SQL keywords and syntax.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
57
Data macros can only be used with report events.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
58
Most SQL statements begin with SELECT and end with a colon(:).
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
59
The ORDER BY keyword is used to sort the records by a certain field.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
60
If your query does not include the WHERE keyword,the query will return all records from the table.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
61
Match between columns
WHERE
specifies the table or tables that will be searched
WHERE
sorts the records by a certain field in either ascending or descending order
WHERE
instructs Access to return the specific fields from one or more tables
WHERE
defines the purpose and the structure of an SQL statement
WHERE
specifies the criteria that records must match to be included in the results
SELECT
specifies the table or tables that will be searched
SELECT
sorts the records by a certain field in either ascending or descending order
SELECT
instructs Access to return the specific fields from one or more tables
SELECT
defines the purpose and the structure of an SQL statement
SELECT
specifies the criteria that records must match to be included in the results
ORDER BY
specifies the table or tables that will be searched
ORDER BY
sorts the records by a certain field in either ascending or descending order
ORDER BY
instructs Access to return the specific fields from one or more tables
ORDER BY
defines the purpose and the structure of an SQL statement
ORDER BY
specifies the criteria that records must match to be included in the results
SQL
specifies the table or tables that will be searched
SQL
sorts the records by a certain field in either ascending or descending order
SQL
instructs Access to return the specific fields from one or more tables
SQL
defines the purpose and the structure of an SQL statement
SQL
specifies the criteria that records must match to be included in the results
FROM
specifies the table or tables that will be searched
FROM
sorts the records by a certain field in either ascending or descending order
FROM
instructs Access to return the specific fields from one or more tables
FROM
defines the purpose and the structure of an SQL statement
FROM
specifies the criteria that records must match to be included in the results
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
62
Embedded macros are always attached to an event of a control on a form or report.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
63
The Macro Designer enables you to create and edit macros.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
64
________ is the industry standard language for defining,manipulating,and retrieving data in a database.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
65
MessageBox actions contain the arguments Message,Beep,Type,and Title.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
66
One reason for using a SQL statement for a record source is that it is easier to transfer a form or report to another database because the record source is contained in the object.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
67
When you add a macro to an event,Access embeds a macro in the object or control.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
68
When you close a form or a report,the On Close event is triggered and Access executes the steps stored in the macro associated with the On Close event.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
69
The ORDER BY clause must be added to the beginning of an SQL statement after the WHERE clause.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
70
When modifying a macro in the Macro Designer,it is not necessary to save because Access saves automatically.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
71
The record source of a form or a report in Access can be either a table or a query,depending on the complexity of the data.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
72
Match between columns
embedded macro
a series of actions that can be programmed to automate tasks
embedded macro
executes a series of actions when a table event occurs
embedded macro
database object that can be created and used independently of other controls or objects
embedded macro
executes when an event attached to a control or object occurs
stand-alone macro
a series of actions that can be programmed to automate tasks
stand-alone macro
executes a series of actions when a table event occurs
stand-alone macro
database object that can be created and used independently of other controls or objects
stand-alone macro
executes when an event attached to a control or object occurs
data macro
a series of actions that can be programmed to automate tasks
data macro
executes a series of actions when a table event occurs
data macro
database object that can be created and used independently of other controls or objects
data macro
executes when an event attached to a control or object occurs
macro
a series of actions that can be programmed to automate tasks
macro
executes a series of actions when a table event occurs
macro
database object that can be created and used independently of other controls or objects
macro
executes when an event attached to a control or object occurs
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
73
Data macros attach programming logic to tables.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
74
If you have to perform a repetitive task in Access,you may consider building a(n)________ to automate the task.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
75
An embedded macro is a database object that you create and use independently of other controls or objects.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
76
Match between columns
event
a variable,constant,or expression that is needed to product the output for an action
event
occurs when a user enters,edits,or deleted data
event
user interface that enables you to create and edit macros
event
block of text that is used to retrieve data from the tables in a database
event
industry-standard language for defining,manipulating,and retrieving data in a database
Structured Query Language
a variable,constant,or expression that is needed to product the output for an action
Structured Query Language
occurs when a user enters,edits,or deleted data
Structured Query Language
user interface that enables you to create and edit macros
Structured Query Language
block of text that is used to retrieve data from the tables in a database
Structured Query Language
industry-standard language for defining,manipulating,and retrieving data in a database
SQL SELECT statement
a variable,constant,or expression that is needed to product the output for an action
SQL SELECT statement
occurs when a user enters,edits,or deleted data
SQL SELECT statement
user interface that enables you to create and edit macros
SQL SELECT statement
block of text that is used to retrieve data from the tables in a database
SQL SELECT statement
industry-standard language for defining,manipulating,and retrieving data in a database
Macro Designer
a variable,constant,or expression that is needed to product the output for an action
Macro Designer
occurs when a user enters,edits,or deleted data
Macro Designer
user interface that enables you to create and edit macros
Macro Designer
block of text that is used to retrieve data from the tables in a database
Macro Designer
industry-standard language for defining,manipulating,and retrieving data in a database
argument
a variable,constant,or expression that is needed to product the output for an action
argument
occurs when a user enters,edits,or deleted data
argument
user interface that enables you to create and edit macros
argument
block of text that is used to retrieve data from the tables in a database
argument
industry-standard language for defining,manipulating,and retrieving data in a database
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
77
To run one macro from within another,use the RunDataMacro action.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
78
Macros can be converted to VBA.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
79
Embedded macros can be used to validate the data in a field or a record.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
80
The basic structure of an SQL statement is SELECT,FROM,WHERE,and ORDER BY.
Unlock Deck
Unlock for access to all 100 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 100 flashcards in this deck.