Deck 8: SQL Functions and Procedures

ملء الشاشة (f)
exit full mode
سؤال
In procedural languages, you can accomplish many tasks using a single command.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
You can embed SQL commands in Access programs similarly to the way you can in PL/SQL and T-SQL.
سؤال
To create a stored procedure, use the CREATE PROCEDURE command.
سؤال
When you anticipate running a particular query often, you can improve overall performance by saving the query in a file called a routine.
سؤال
In PL/SQL, procedural code appears between the BEGIN and END commands.
سؤال
PL/SQL, which was developed by Oracle as an extension of SQL, is an example of a procedural language.
سؤال
Oracle, SQL Server, and Access all use the ADD_MONTHS function to add the number of months to a date.
سؤال
In Access, use the & symbol to concatenate columns.
سؤال
To add a specific number of days to a date, you must use a function.
سؤال
A client is a computer that is connected to a network and has access through the server to the database.
سؤال
If a price is 24.95, the function ROUND(PRICE,0) would result in 24.
سؤال
You cannot use functions in WHERE clauses.
سؤال
The UPPER function allows you to manipulate numeric data.
سؤال
PL/SQL commands have a certain format and cannot include any blank lines in the code.
سؤال
The ADD_MONTHS function has one argument.
سؤال
You use aggregate functions to perform calculations based on groups of records.
سؤال
A function can have more than one argument.
سؤال
When you need to complete tasks that are beyond the capabilities of SQL, you need to use a procedural language.
سؤال
To truncate (remove) everything to the right of the decimal point, use the TRUNCATE function.
سؤال
In SQL Server, use the & symbol to concatenate columns.
سؤال
In Oracle and SQL Server, the ____ function displays a value in lowercase letters.

A) REGULAR
B) LOWER
C) SMALL
D) LCASE
سؤال
You can use a stored procedure to update data but not to delete data.
سؤال
To call a procedure in SQL Server, use the EXEC command.
سؤال
In Microsoft Access, the ____ function displays a value in uppercase letters.

A) CAPITAL
B) UPPER
C) LARGE
D) UCASE
سؤال
PL/SQL can process only one record at a time.
سؤال
In SQL Server, the INSERTED table is a temporary system table that contains a copy of the values that the last SQL command inserted.
سؤال
In Microsoft Access, you must store an SQL command in a string variable.
سؤال
In Oracle, to add a specific number of months to a date, use the ____ function.

A) MONTHS
B) ADD_DATE
C) ADD_MONTHS
D) CALC_MONTHS
سؤال
In T-SQL, all arguments start with the ampersand (&) symbol.
سؤال
A trigger is a pointer to a row in the collection of rows retrieved by an SQL command.
سؤال
DBMS_OUTPUT is a package that contains multiple procedures, including PUT_LINE.
سؤال
In T-SQL, arguments should have the same data type and length as the particular column in a table that they represent.
سؤال
In Microsoft Access, the ____ function displays a value in lowercase letters.

A) REGULAR
B) LOWER
C) SMALL
D) LCASE
سؤال
In SQL Server and Microsoft Access, to add a specific number of months to a date, use the ____ function.

A) MONTHS
B) DATEADD()
C) ADD_MONTHS
D) CALC_MONTHS
سؤال
In Oracle and SQL Server, the ____ function displays a value in uppercase letters.

A) CAPITAL
B) UPPER
C) LARGE
D) UCASE
سؤال
Microsoft Access supports triggers.
سؤال
To handle processing of errors, include an ABORT clause in a stored procedure.
سؤال
In Oracle and SQL Server, use the ____ function to truncate everything to the right of the decimal point.

A) TRUNCATE
B) FLOOR
C) REMOVE
D) TRIM
سؤال
In Oracle, SQL Server, and Microsoft Access, use the ____ function to round a numeric value to a desired number of decimal places.

A) INT
B) INTEGER
C) ROUND
D) TRUNCATE
سؤال
SQL Server uses an extended version of SQL called T-SQL or Transact-SQL.
سؤال
When you use a cursor in a procedure, the ____ command advances the cursor to the next row in the set of rows retrieved by the query and places the contents of the row in the indicated variables.

A) RETRIEVE
B) FETCH
C) GET
D) ADVANCE
سؤال
A(n) ____ is a procedure that is executed automatically in response to an associated database operation.

A) cursor
B) trigger
C) waypoint
D) fetchpoint
سؤال
The process of combining two or more character columns into a single expression is called ____________________.
سؤال
In Microsoft Access, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) CURRENT_DATE
C) DATE()
D) SYSDATE
سؤال
To create a stored procedure in Oracle, use the ____ command.

A) CREATE ROUTINE
B) CREATE SCRIPT
C) CREATE PROCEDURE
D) CREATE EXECUTABLE
سؤال
Oracle uses ____________________ as an extension of SQL to accomplish procedural tasks.
سؤال
To remove extra spaces to the right of a value, for example, the value in a FIRST_NAME column, use the ____ function.

A) TRUNCATE
B) TRIM
C) RIGHT
D) RTRIM
سؤال
In SQL Server, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) GETDATE()
C) CURRENTDATE()
D) SYSDATE
سؤال
In the function UPPER(LAST_NAME), the item in parentheses (LAST_NAME) is called the ____________________ for the function.
سؤال
A(n) ____________________ is a computer that is connected to a network and has access through the server to the database.
سؤال
In PL/SQL, you can ensure that a variable has the same data type as a particular column by using the ____ attribute.

A) @VARIABLE
B) %VARIABLE
C) @DATATYPE
D) %TYPE
سؤال
In Microsoft Visual Basic, use the ____ statement to create a string variable.

A) Dim
B) Decl
C) Var
D) Declare
سؤال
To concatenate columns in Oracle, you type two ____________________ between the column names.
سؤال
____________________ is the procedural language that SQL Server uses.
سؤال
Variable names in PL/SQL must start with a letter and can contain letters, dollar signs, underscores, and number signs, but cannot exceed ____ characters.

A) 15
B) 30
C) 45
D) 60
سؤال
To call a procedure in SQL Server, use the ____ command.

A) CALL
B) RUN
C) DO
D) EXEC
سؤال
A(n) ____ is a pointer to a row in the collection of rows retrieved by an SQL command.

A) cursor
B) trigger
C) waypoint
D) fetchpoint
سؤال
SQL is a powerful ____________________ language in which you communicate tasks to the computer using simple commands.
سؤال
A(n) ____________________ language is one in which you must give the computer the step-by-step process for accomplishing a task.
سؤال
In Oracle, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) CURRENT_DATE
C) NOWDATE
D) SYSDATE
سؤال
A(n) ____________________ is a procedure that is executed automatically in response to an associated database operation, such as an INSERT, UPDATE, or DELETE command.
سؤال
To handle processing of errors, include a(n) ____________________ clause in stored procedure.
سؤال
In SQL Server, the cursor property ____________________ means that the cursor is used for retrieval purposes only.
سؤال
In Microsoft Access, programs are written in ____________________, which does not support embedded SQL commands directly in the code.
سؤال
Although Access does not support stored procedures, you can achieve some of the same convenience by creating a(n) ____________________ query that prompts the user for the arguments you would otherwise use in a stored procedure.
سؤال
Name two reasons for creating a stored procedure.
سؤال
To create a stored procedure in Oracle, use the ____________________ command.
سؤال
A(n) ____________________ is a pointer to a row in the collection of rows retrieved by an SQL command.
سؤال
A procedure that updates data is called a(n) ____________________ procedure.
سؤال
What are the three advantages of cursors?
سؤال
In SQL Server, you deactivate a cursor by using the ____________________ command.
سؤال
What is the difference between a nonprocedural language and a procedural language? Give an example of each.
سؤال
Each procedure that you create in Oracle should end with a(n) ____________________.
سؤال
To close a cursor and deactivate it, use the ____________________ command.
سؤال
When you use a cursor, the ____________________ command opens the cursor and causes the query to be executed, making the results available to the procedure.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 8: SQL Functions and Procedures
1
In procedural languages, you can accomplish many tasks using a single command.
False
2
You can embed SQL commands in Access programs similarly to the way you can in PL/SQL and T-SQL.
False
3
To create a stored procedure, use the CREATE PROCEDURE command.
True
4
When you anticipate running a particular query often, you can improve overall performance by saving the query in a file called a routine.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
In PL/SQL, procedural code appears between the BEGIN and END commands.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
PL/SQL, which was developed by Oracle as an extension of SQL, is an example of a procedural language.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
Oracle, SQL Server, and Access all use the ADD_MONTHS function to add the number of months to a date.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
In Access, use the & symbol to concatenate columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
To add a specific number of days to a date, you must use a function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
A client is a computer that is connected to a network and has access through the server to the database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
If a price is 24.95, the function ROUND(PRICE,0) would result in 24.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
12
You cannot use functions in WHERE clauses.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
The UPPER function allows you to manipulate numeric data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
PL/SQL commands have a certain format and cannot include any blank lines in the code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
15
The ADD_MONTHS function has one argument.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
You use aggregate functions to perform calculations based on groups of records.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
A function can have more than one argument.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
When you need to complete tasks that are beyond the capabilities of SQL, you need to use a procedural language.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
To truncate (remove) everything to the right of the decimal point, use the TRUNCATE function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
20
In SQL Server, use the & symbol to concatenate columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
In Oracle and SQL Server, the ____ function displays a value in lowercase letters.

A) REGULAR
B) LOWER
C) SMALL
D) LCASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
You can use a stored procedure to update data but not to delete data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
23
To call a procedure in SQL Server, use the EXEC command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
In Microsoft Access, the ____ function displays a value in uppercase letters.

A) CAPITAL
B) UPPER
C) LARGE
D) UCASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
PL/SQL can process only one record at a time.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
In SQL Server, the INSERTED table is a temporary system table that contains a copy of the values that the last SQL command inserted.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
In Microsoft Access, you must store an SQL command in a string variable.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
In Oracle, to add a specific number of months to a date, use the ____ function.

A) MONTHS
B) ADD_DATE
C) ADD_MONTHS
D) CALC_MONTHS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
In T-SQL, all arguments start with the ampersand (&) symbol.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
A trigger is a pointer to a row in the collection of rows retrieved by an SQL command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
DBMS_OUTPUT is a package that contains multiple procedures, including PUT_LINE.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
In T-SQL, arguments should have the same data type and length as the particular column in a table that they represent.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
In Microsoft Access, the ____ function displays a value in lowercase letters.

A) REGULAR
B) LOWER
C) SMALL
D) LCASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
In SQL Server and Microsoft Access, to add a specific number of months to a date, use the ____ function.

A) MONTHS
B) DATEADD()
C) ADD_MONTHS
D) CALC_MONTHS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
In Oracle and SQL Server, the ____ function displays a value in uppercase letters.

A) CAPITAL
B) UPPER
C) LARGE
D) UCASE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
Microsoft Access supports triggers.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
To handle processing of errors, include an ABORT clause in a stored procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
In Oracle and SQL Server, use the ____ function to truncate everything to the right of the decimal point.

A) TRUNCATE
B) FLOOR
C) REMOVE
D) TRIM
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
In Oracle, SQL Server, and Microsoft Access, use the ____ function to round a numeric value to a desired number of decimal places.

A) INT
B) INTEGER
C) ROUND
D) TRUNCATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
SQL Server uses an extended version of SQL called T-SQL or Transact-SQL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
41
When you use a cursor in a procedure, the ____ command advances the cursor to the next row in the set of rows retrieved by the query and places the contents of the row in the indicated variables.

A) RETRIEVE
B) FETCH
C) GET
D) ADVANCE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
A(n) ____ is a procedure that is executed automatically in response to an associated database operation.

A) cursor
B) trigger
C) waypoint
D) fetchpoint
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
The process of combining two or more character columns into a single expression is called ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
In Microsoft Access, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) CURRENT_DATE
C) DATE()
D) SYSDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
45
To create a stored procedure in Oracle, use the ____ command.

A) CREATE ROUTINE
B) CREATE SCRIPT
C) CREATE PROCEDURE
D) CREATE EXECUTABLE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
Oracle uses ____________________ as an extension of SQL to accomplish procedural tasks.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
47
To remove extra spaces to the right of a value, for example, the value in a FIRST_NAME column, use the ____ function.

A) TRUNCATE
B) TRIM
C) RIGHT
D) RTRIM
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
In SQL Server, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) GETDATE()
C) CURRENTDATE()
D) SYSDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
In the function UPPER(LAST_NAME), the item in parentheses (LAST_NAME) is called the ____________________ for the function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
A(n) ____________________ is a computer that is connected to a network and has access through the server to the database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
51
In PL/SQL, you can ensure that a variable has the same data type as a particular column by using the ____ attribute.

A) @VARIABLE
B) %VARIABLE
C) @DATATYPE
D) %TYPE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
In Microsoft Visual Basic, use the ____ statement to create a string variable.

A) Dim
B) Decl
C) Var
D) Declare
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
To concatenate columns in Oracle, you type two ____________________ between the column names.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
54
____________________ is the procedural language that SQL Server uses.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
Variable names in PL/SQL must start with a letter and can contain letters, dollar signs, underscores, and number signs, but cannot exceed ____ characters.

A) 15
B) 30
C) 45
D) 60
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
To call a procedure in SQL Server, use the ____ command.

A) CALL
B) RUN
C) DO
D) EXEC
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
57
A(n) ____ is a pointer to a row in the collection of rows retrieved by an SQL command.

A) cursor
B) trigger
C) waypoint
D) fetchpoint
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
SQL is a powerful ____________________ language in which you communicate tasks to the computer using simple commands.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
A(n) ____________________ language is one in which you must give the computer the step-by-step process for accomplishing a task.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
60
In Oracle, you can use the ____ function to obtain today's date.

A) TODAYS_DATE
B) CURRENT_DATE
C) NOWDATE
D) SYSDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
A(n) ____________________ is a procedure that is executed automatically in response to an associated database operation, such as an INSERT, UPDATE, or DELETE command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
To handle processing of errors, include a(n) ____________________ clause in stored procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
In SQL Server, the cursor property ____________________ means that the cursor is used for retrieval purposes only.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
In Microsoft Access, programs are written in ____________________, which does not support embedded SQL commands directly in the code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
Although Access does not support stored procedures, you can achieve some of the same convenience by creating a(n) ____________________ query that prompts the user for the arguments you would otherwise use in a stored procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
Name two reasons for creating a stored procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
67
To create a stored procedure in Oracle, use the ____________________ command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
68
A(n) ____________________ is a pointer to a row in the collection of rows retrieved by an SQL command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
A procedure that updates data is called a(n) ____________________ procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
What are the three advantages of cursors?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
In SQL Server, you deactivate a cursor by using the ____________________ command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
What is the difference between a nonprocedural language and a procedural language? Give an example of each.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
Each procedure that you create in Oracle should end with a(n) ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
To close a cursor and deactivate it, use the ____________________ command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
When you use a cursor, the ____________________ command opens the cursor and causes the query to be executed, making the results available to the procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.