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

ملء الشاشة (f)
exit full mode
سؤال
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
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
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
سؤال
Which of the following examples is NOT an event attached to an object?

A)On Close
B)After Update
C)On Click
D)Select
سؤال
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
سؤال
A(n)________ attaches programming logic to tables.

A)data macros
B)stand-alone macros
C)embedded macros
D)event-driven macros
سؤال
________ can be converted to VBA without having to write any complex programming code.

A)Macros
B)Tables
C)Forms
D)Reports
سؤال
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
سؤال
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
سؤال
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
سؤال
Like stand-alone macros and embedded macros,what does a data macro use?

A)Macro Designer
B)Command Wizard
C)Design View
D)MessageBox
سؤال
A ________ is a series of actions that can be programmed to automate tasks.

A)macro
B)table
C)form
D)report
سؤال
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
سؤال
What do you use to create a stand-alone macro?

A)Macro Designer
B)Macro Maker
C)Macro Editor
D)Named Data Macro
سؤال
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(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
سؤال
Data macros are used to ensure the accuracy of data in a(n):

A)table.
B)report.
C)embedded macro.
D)stand-alone macro.
سؤال
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.
سؤال
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
سؤال
What feature does Access include to aid in creating a macro?

A)Macro Designer
B)Macro Editor
C)Macro Maker
D)Named Data Macro
سؤال
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
سؤال
Which SQL statement determines how the rows will be sorted?

A)ORDER BY
B)SELECT
C)FROM
D)WHERE
سؤال
All SQL statements must end with a:

A)semi-colon (;).
B)colon (:).
C)question mark (?).
D)bracket({}).
سؤال
Most SQL statements begin with ________ and end with ________.

A)SELECT;semicolon (;)
B)SELECT;colon (:)
C)ON CLICK;comma (,)
D)ORDER BY;period (. )
سؤال
Which SQL keyword specifies the table (or tables)that will be searched?

A)FROM
B)SELECT
C)WHERE
D)ORDER BY
سؤال
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
سؤال
After you create a macro,you initiate all its tasks by running it.
سؤال
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
سؤال
On Close is an example of a(n):

A)event attached to an object.
B)event After Update.
C)update event.
D)new action.
سؤال
Which type of events trigger data macros?

A)Table events
B)Report events
C)Form events
D)Query events
سؤال
Access provides two methods of programming creating macros and creating procedures using Visual Basic Applications.
سؤال
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
سؤال
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
سؤال
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
سؤال
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.
سؤال
All Access queries use ________ behind the scenes to extract data from tables.

A)SQL statement
B)Oracle statement
C)Sybase statement
D)Structured statement
سؤال
Which SQL statement sets the criteria for the rows in the results?

A)WHERE
B)SELECT
C)FROM
D)ORDER BY
سؤال
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
سؤال
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 (&)
سؤال
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 (")
سؤال
Macros can be converted to VBA without having to write any complex programming code.
سؤال
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.
سؤال
There are three keywords found in a typical SQL SELECT statement:
SELECT,FROM,and ORDER BY.
سؤال
In a SELECT statement,field names are listed after the SELECT statement and are separated by commas.
سؤال
An SQL keyword defines the purpose and the structure of a SQL statement.
سؤال
Data macros can only be used with report events.
سؤال
Most SQL statements begin with SELECT and end with a colon(:
).
سؤال
Microsoft has developed its own version of SQL for Access,which varies slightly from the industry standard SQL language.
سؤال
SQL is the data retrieval and data manipulation language of all the industry-leading databases.
سؤال
Data macros,like stand-alone macros and embedded macros,use the Macro Designer.
سؤال
Action queries each have their equivalent SQL keywords and syntax.
سؤال
The ORDER BY keyword is used to sort the records by a certain field.
سؤال
The SELECT keyword instructs Access to return the specific fields from one or more tables or queries.
سؤال
Access queries use an Oracle statement behind the scenes to extract data from tables.
سؤال
A form based on a table that contains a macro inherits the logic of the table.
سؤال
The WHERE keyword specifies how the rows will be sorted.
سؤال
Data macros can be accessed from anywhere in the database,including running them from within another macro.
سؤال
An SQL keyword defines the purpose and the structure of an SQL statement.
سؤال
If your query does not include the WHERE keyword,the query will return all records from the table.
سؤال
An SQL SELECT statement is used to retrieve reports from tables in a database.
سؤال
Instead of specifying the individual field names in SQL,you can use the asterisk character (*)to select all of the fields.
سؤال
________ is the industry standard language for defining,manipulating,and retrieving data in a database.
سؤال
The basic structure of an SQL statement is SELECT,FROM,WHERE,and ORDER BY.
سؤال
Data macros attach programming logic to tables.
سؤال
The Macro Designer enables you to create and edit macros.
سؤال
Macros can be converted to VBA.
سؤال
To run one macro from within another,use the RunDataMacro action.
سؤال
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.
سؤال
Match between columns
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
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
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
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
سؤال
An embedded macro is a database object that you create and use independently of other controls or objects.
سؤال
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.
سؤال
MessageBox actions contain the arguments Message,Beep,Type,and Title.
سؤال
When you add a macro to an event,Access embeds a macro in the object or control.
سؤال
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
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
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
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
سؤال
Embedded macros can be used to validate the data in a field or a record.
سؤال
The ORDER BY clause must be added to the beginning of an SQL statement after the WHERE clause.
سؤال
When modifying a macro in the Macro Designer,it is not necessary to save because Access saves automatically.
سؤال
Match between columns
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
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
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
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
سؤال
Embedded macros are always attached to an event of a control on a form or report.
سؤال
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.
سؤال
If you have to perform a repetitive task in Access,you may consider building a(n)________ to automate the task.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 39 : Using Macros and SQL in Access: Advanced Techniques
1
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
A
2
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
A
3
Which of the following examples is NOT an event attached to an object?

A)On Close
B)After Update
C)On Click
D)Select
D
4
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
5
A(n)________ attaches programming logic to tables.

A)data macros
B)stand-alone macros
C)embedded macros
D)event-driven macros
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
6
________ can be converted to VBA without having to write any complex programming code.

A)Macros
B)Tables
C)Forms
D)Reports
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
7
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
8
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
9
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
10
Like stand-alone macros and embedded macros,what does a data macro use?

A)Macro Designer
B)Command Wizard
C)Design View
D)MessageBox
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
11
A ________ is a series of actions that can be programmed to automate tasks.

A)macro
B)table
C)form
D)report
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
12
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
13
What do you use to create a stand-alone macro?

A)Macro Designer
B)Macro Maker
C)Macro Editor
D)Named Data Macro
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
14
What do you use to create a stand-alone macro?

A)Macro Designer
B)An automated task
C)An Embedded macro
D)An event
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
15
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
16
Data macros are used to ensure the accuracy of data in a(n):

A)table.
B)report.
C)embedded macro.
D)stand-alone macro.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
17
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
18
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
19
What feature does Access include to aid in creating a macro?

A)Macro Designer
B)Macro Editor
C)Macro Maker
D)Named Data Macro
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
20
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
21
Which SQL statement determines how the rows will be sorted?

A)ORDER BY
B)SELECT
C)FROM
D)WHERE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
22
All SQL statements must end with a:

A)semi-colon (;).
B)colon (:).
C)question mark (?).
D)bracket({}).
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
23
Most SQL statements begin with ________ and end with ________.

A)SELECT;semicolon (;)
B)SELECT;colon (:)
C)ON CLICK;comma (,)
D)ORDER BY;period (. )
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
24
Which SQL keyword specifies the table (or tables)that will be searched?

A)FROM
B)SELECT
C)WHERE
D)ORDER BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
25
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
26
After you create a macro,you initiate all its tasks by running it.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
27
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
28
On Close is an example of a(n):

A)event attached to an object.
B)event After Update.
C)update event.
D)new action.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
29
Which type of events trigger data macros?

A)Table events
B)Report events
C)Form events
D)Query events
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
30
Access provides two methods of programming creating macros and creating procedures using Visual Basic Applications.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
32
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
33
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
34
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
35
All Access queries use ________ behind the scenes to extract data from tables.

A)SQL statement
B)Oracle statement
C)Sybase statement
D)Structured statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
36
Which SQL statement sets the criteria for the rows in the results?

A)WHERE
B)SELECT
C)FROM
D)ORDER BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
37
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
38
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 (&)
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
39
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 (")
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
40
Macros can be converted to VBA without having to write any complex programming code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
41
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
42
There are three keywords found in a typical SQL SELECT statement:
SELECT,FROM,and ORDER BY.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
43
In a SELECT statement,field names are listed after the SELECT statement and are separated by commas.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
44
An SQL keyword defines the purpose and the structure of a SQL statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
45
Data macros can only be used with report events.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
46
Most SQL statements begin with SELECT and end with a colon(:
).
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
47
Microsoft has developed its own version of SQL for Access,which varies slightly from the industry standard SQL language.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
48
SQL is the data retrieval and data manipulation language of all the industry-leading databases.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
49
Data macros,like stand-alone macros and embedded macros,use the Macro Designer.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
50
Action queries each have their equivalent SQL keywords and syntax.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
51
The ORDER BY keyword is used to sort the records by a certain field.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
52
The SELECT keyword instructs Access to return the specific fields from one or more tables or queries.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
53
Access queries use an Oracle statement behind the scenes to extract data from tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
54
A form based on a table that contains a macro inherits the logic of the table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
55
The WHERE keyword specifies how the rows will be sorted.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
56
Data macros can be accessed from anywhere in the database,including running them from within another macro.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
57
An SQL keyword defines the purpose and the structure of an SQL statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
58
If your query does not include the WHERE keyword,the query will return all records from the table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
59
An SQL SELECT statement is used to retrieve reports from tables in a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
60
Instead of specifying the individual field names in SQL,you can use the asterisk character (*)to select all of the fields.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
61
________ is the industry standard language for defining,manipulating,and retrieving data in a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
62
The basic structure of an SQL statement is SELECT,FROM,WHERE,and ORDER BY.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
63
Data macros attach programming logic to tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
64
The Macro Designer enables you to create and edit macros.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
65
Macros can be converted to VBA.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
66
To run one macro from within another,use the RunDataMacro action.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
67
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
68
Match between columns
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
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
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
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
69
An embedded macro is a database object that you create and use independently of other controls or objects.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
70
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
71
MessageBox actions contain the arguments Message,Beep,Type,and Title.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
72
When you add a macro to an event,Access embeds a macro in the object or control.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
73
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
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
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
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
74
Embedded macros can be used to validate the data in a field or a record.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
75
The ORDER BY clause must be added to the beginning of an SQL statement after the WHERE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
76
When modifying a macro in the Macro Designer,it is not necessary to save because Access saves automatically.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
77
Match between columns
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
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
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
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
78
Embedded macros are always attached to an event of a control on a form or report.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
79
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.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
80
If you have to perform a repetitive task in Access,you may consider building a(n)________ to automate the task.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.