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

ملء الشاشة (f)
exit full mode
سؤال
A ________ is a series of actions that can be programmed to automate tasks.

A) macro
B) table
C) form
D) report
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
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)________ 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(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
سؤال
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
سؤال
Data macros are used to ensure the accuracy of data in a(n):

A) table.
B) report.
C) embedded macro.
D) stand-alone macro.
سؤال
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(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
سؤال
Which of the following examples is NOT an event attached to an object?

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

A) Macro Designer
B) Command Wizard
C) Design View
D) MessageBox
سؤال
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
سؤال
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.
سؤال
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
سؤال
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(n)________ attaches programming logic to tables.

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

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

A) Macros
B) Tables
C) Forms
D) Reports
سؤال
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
سؤال
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 ________ keyword instructs Access to return the specific fields from one or more tables or queries.

A) SELECT
B) FROM
C) WHERE
D) ORDER BY
سؤال
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 (&)
سؤال
Which SQL keyword specifies the table (or tables)that will be searched?

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

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

A) WHERE
B) SELECT
C) FROM
D) ORDER BY
سؤال
Macros can be converted to VBA without having to write any complex programming code.
سؤال
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 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
سؤال
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
سؤال
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 type of macro can only be used with table events?

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

A) SELECT; semicolon (;)
B) SELECT; colon (:)
C) ON CLICK; comma (,)
D) ORDER BY; period (.)
سؤال
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
سؤال
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 (")
سؤال
Which SQL statement determines how the rows will be sorted?

A) ORDER BY
B) SELECT
C) FROM
D) WHERE
سؤال
Which type of events trigger data macros?

A) Table events
B) Report events
C) Form events
D) Query events
سؤال
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.
سؤال
Access provides two methods of programming creating macros and creating procedures using Visual Basic Applications.
سؤال
On Close is an example of a(n):

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

A) semi-colon (;).
B) colon (:).
C) question mark (?).
D) bracket({}).
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
25
After you create a macro,you initiate all its tasks by running it.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
27
Macros can be converted to VBA without having to write any complex programming code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 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 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
33
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
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
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
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 (")
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
36
Which SQL statement determines how the rows will be sorted?

A) ORDER BY
B) SELECT
C) FROM
D) WHERE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
37
Which type of events trigger data macros?

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