Deck 6: Updating Data

ملء الشاشة (f)
exit full mode
سؤال
One of the nicest features of a relational DBMS,such as Oracle,is the ease with which you can change table structures.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
You cannot commit and roll back data in SQL Server.
سؤال
The command,CREATE TABLE AS LEVEL1_CUSTOMER USING CUSTOMER;creates a table called LEVEL1_CUSTOMER that has the same structure as CUSTOMER.
سؤال
Updates become permanent automatically when you exit from the DBMS.
سؤال
Access does not support the COMMIT or ROLLBACK commands.
سؤال
You can use the existing value in a column and a calculation to update a value.
سؤال
By default,Oracle commits each action query as soon as the user executes the query.
سؤال
If you change the value of a column to NULL,you must enclose the NULL value in single quotation marks.
سؤال
It is a good idea to use a SELECT command to display the data you changed to verify that the correct update was made.
سؤال
In SQL Server,the word NULL appears in the results when a column contains a null value.
سؤال
You can create a new table using data in an existing table.
سؤال
The data stored in tables changes only infrequently.
سؤال
When necessary,include a WHERE clause into the UPDATE command to indicate the column on which the change is to take place.
سؤال
If you specify NOT NULL for a column when you create a table,you are prohibited from changing a value in the column to null.
سؤال
In a transaction,it is acceptable if some steps fail.
سؤال
You use the APPEND command to add additional rows to tables.
سؤال
If the Autocommit mode is turned off,you can cancel updates at any time during your current work session.
سؤال
To verify that the correct change was made to data in a table,use the DISPLAY command.
سؤال
You cannot use a compound condition with an UPDATE command.
سؤال
You can use REMOVE ROW to remove a row from a table.
سؤال
If you decrease the size of a column,it is possible to lose some data currently in the column.
سؤال
The DROP TABLE command creates an empty table.
سؤال
In order to use the COMMIT command in Oracle,you need to clear the check mark from the ____ check box.​

A)Transaction
B)​Autocommit
C)Permanent
D)​Temporary
سؤال
To change rows for which a specific condition is true,use the ____ command​

A)CHANGE
B)​MODIFY
C)UPDATE
D)​ALTER
سؤال
____ is the default transaction mode in Oracle and commits each action query as soon as the user executes the query.​

A)Execute
B)​Run
C)Autocommit
D)​Enabled
سؤال
When you add a new column to a table,the default for Oracle,SQL Server,and Access is to accept null values.
سؤال
You can increase the length of column but you cannot decrease the length of a column.
سؤال
If you have not run the COMMIT command,executing the ____ command will reverse all updates made during the current work session.​

A)UPDATE
B)​REVERSE
C)ROLLBACK
D)​ROLL
سؤال
In some cases,you might need to change a table's structure in ways that are beyond the capabilities of your DBMS.When that happens,use the RESTRUCTURE command to redesign the table.
سؤال
If you have verified that the update you made is correct,you can use the ____ command to make the update permanent.​

A)UPDATE
B)​ROLL
C)COMMIT
D)​SAVE
سؤال
In Access,use the Documenter tool to show the layout of a table.
سؤال
You cannot change the characteristics of existing columns.
سؤال
You can use the ____ command to create a new table using data in an existing table.​

A)CREATE TABLE
B)​NEW TABLE
C)UPDATE
D)​ALTER TABLE
سؤال
To add a new column,use the ADD NEW COLUMN clause of the ALTER TABLE command.
سؤال
In SQL Server,execute the sp_columns command to list all the columns in a table.
سؤال
There are table structure changes that are beyond the capabilities of SQL.
سؤال
Access does not support the ____ data type.​

A)DECIMAL
B)​CURRENCY
C)CHAR
D)​INT
سؤال
In Oracle 11 g,a null value is displayed as a hyphen.
سؤال
To add data from an existing table to a new table,use a SELECT command in a(n)____ command.​

A)SET
B)​ADD
C)INSERT
D)​UPDATE
سؤال
To permanently remove both a table and its data,you must issue both a DROP TABLE command and a DELETE command.
سؤال
Which of the following is a valid SQL command?​

A)DROP TABLE LEVEL1_CUSTOMER;
B)​DROP LEVEL1_CUSTOMER;
C)DELETE LEVEL1_CUSTOMER;
D)​All of the above
سؤال
You use the ____________________ command to remove rows from a table.​
سؤال
In SQL,use the ____ data type for variable-length character columns.​

A)TEXT
B)​VARCHAR
C)VARIABLE
D)​CHARLENGTH
سؤال
To sort rows in a specific order,use the ____________________ clause with the desired sort key(s).​
سؤال
You can use the ____ clause of the ALTER TABLE command to change a column that currently rejects null values so that it will accept null values.​

A)ADD
B)​MODIFY
C)UPDATE
D)​NULL
سؤال
The ROLLBACK command reverses changes made to the ____________________ only.​
سؤال
Which of the following is a valid SQL command?​

A)COMMIT TABLE;
B)​COMMIT CHANGES;
C)COMMIT DB;
D)​COMMIT;
سؤال
A(n)____ can be viewed as a sequence of steps that accomplishes a single task.​

A)procedure
B)​transaction
C)program
D)​method
سؤال
The format for the UPDATE command is the word UPDATE,followed by the name of the table to be updated.The next portion of the command consists of the word ____________________,followed by the name of the column to be updated,an equals sign,and the new value.​
سؤال
During your current work session you can save your changes immediately by executing the ____________________ command.​
سؤال
If you decide that you do not want to save the changes you have made during your current work session,you can reverse the changes by executing the ____________________ command.​
سؤال
In Oracle,use the ____ command to display the structure of a table.​

A)SHOW TABLE
B)​SHOW LAYOUT
C)DESCRIBE
D)​DISPLAY LAYOUT
سؤال
If you specified ____ for a column when you created a table,then changing a value in a column to null is prohibited.​

A)NOT NULL
B)​NULL
C)CHAR
D)​NUMBER
سؤال
By placing a(n)____________________ command in an INSERT command,you can add the query results to a table.​
سؤال
You can use the ____ command to delete an entire table and its data.​

A)ROLLBACK
B)​DELETE TABLE
C)DROP TABLE
D)​DELETE
سؤال
What happens if you run a DELETE command that does not contain a WHERE clause?​

A)The table will be deleted.
B)​All rows will be deleted from the table.
C)All values would be replaced by nulls.
D)​None of the above.
سؤال
Which of the following commands executes a rollback?​

A)ROLLBACK TABLE;
B)​ROLLBACK;
C)ROLLBACK ALL;
D)​ROLLBACK DB;
سؤال
A(n)____________________ is a logical unit of work.​
سؤال
To delete rows from the database,use the ____ command.​

A)ROLLBACK
B)​COMMIT
C)DELETE
D)​UPDATE
سؤال
The ____ command is permanent.​

A)SELECT
B)​COMMIT
C)SAVE
D)​UPDATE
سؤال
You can delete a table that is no longer needed by using the ____________________ TABLE command.​
سؤال
If you specified ____________________ for the column when you created the table,then changing a value in a column to null is prohibited.​
سؤال
Describe the format of the ALTER TABLE command to add a new column.​
سؤال
You can change the characteristics of existing columns by using the ____________________ clause of the ALTER TABLE command.​
سؤال
The format for the ALTER TABLE command is the words ALTER TABLE followed by the name of the ____________________ to be altered,followed by an appropriate clause.​
سؤال
How can you use the COMMIT and ROLLBACK commands to support transactions?​
سؤال
In a transaction,if any update cannot be completed,execute the ____________________ command and discontinue the updates for the current transaction.​
سؤال
Before beginning the updates for a transaction,commit any previous updates by executing the ____________________ command.​
سؤال
The ADD clause consists of the word ADD followed by the name of the ____________________ to be added,followed by the characteristics.​
سؤال
In a transaction,if you can complete all updates successfully,execute the ____________________ command after completing the final update.​
سؤال
Describe the format for the UPDATE command.​
سؤال
To change a column that currently rejects null values so that it accepts null vlaues,use the ____________________ clause in the ALTER TABLE command.​
سؤال
In Oracle,use the ____________________ command to display the structure of a table.​
سؤال
To add a new column,use the ____________________ clause of the ALTER TABLE command.​
سؤال
With SQL,you can change a table's structure by using the ____________________ command.​
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/75
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 6: Updating Data
1
One of the nicest features of a relational DBMS,such as Oracle,is the ease with which you can change table structures.
True
2
You cannot commit and roll back data in SQL Server.
False
3
The command,CREATE TABLE AS LEVEL1_CUSTOMER USING CUSTOMER;creates a table called LEVEL1_CUSTOMER that has the same structure as CUSTOMER.
False
4
Updates become permanent automatically when you exit from the DBMS.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
5
Access does not support the COMMIT or ROLLBACK commands.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
6
You can use the existing value in a column and a calculation to update a value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
7
By default,Oracle commits each action query as soon as the user executes the query.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
8
If you change the value of a column to NULL,you must enclose the NULL value in single quotation marks.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
9
It is a good idea to use a SELECT command to display the data you changed to verify that the correct update was made.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
10
In SQL Server,the word NULL appears in the results when a column contains a null value.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
11
You can create a new table using data in an existing table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
12
The data stored in tables changes only infrequently.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
13
When necessary,include a WHERE clause into the UPDATE command to indicate the column on which the change is to take place.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
14
If you specify NOT NULL for a column when you create a table,you are prohibited from changing a value in the column to null.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
15
In a transaction,it is acceptable if some steps fail.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
16
You use the APPEND command to add additional rows to tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
17
If the Autocommit mode is turned off,you can cancel updates at any time during your current work session.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
18
To verify that the correct change was made to data in a table,use the DISPLAY command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
19
You cannot use a compound condition with an UPDATE command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
20
You can use REMOVE ROW to remove a row from a table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
21
If you decrease the size of a column,it is possible to lose some data currently in the column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
22
The DROP TABLE command creates an empty table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
23
In order to use the COMMIT command in Oracle,you need to clear the check mark from the ____ check box.​

A)Transaction
B)​Autocommit
C)Permanent
D)​Temporary
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
24
To change rows for which a specific condition is true,use the ____ command​

A)CHANGE
B)​MODIFY
C)UPDATE
D)​ALTER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
25
____ is the default transaction mode in Oracle and commits each action query as soon as the user executes the query.​

A)Execute
B)​Run
C)Autocommit
D)​Enabled
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
26
When you add a new column to a table,the default for Oracle,SQL Server,and Access is to accept null values.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
27
You can increase the length of column but you cannot decrease the length of a column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
28
If you have not run the COMMIT command,executing the ____ command will reverse all updates made during the current work session.​

A)UPDATE
B)​REVERSE
C)ROLLBACK
D)​ROLL
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
29
In some cases,you might need to change a table's structure in ways that are beyond the capabilities of your DBMS.When that happens,use the RESTRUCTURE command to redesign the table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
30
If you have verified that the update you made is correct,you can use the ____ command to make the update permanent.​

A)UPDATE
B)​ROLL
C)COMMIT
D)​SAVE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
31
In Access,use the Documenter tool to show the layout of a table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
32
You cannot change the characteristics of existing columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
33
You can use the ____ command to create a new table using data in an existing table.​

A)CREATE TABLE
B)​NEW TABLE
C)UPDATE
D)​ALTER TABLE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
34
To add a new column,use the ADD NEW COLUMN clause of the ALTER TABLE command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
35
In SQL Server,execute the sp_columns command to list all the columns in a table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
36
There are table structure changes that are beyond the capabilities of SQL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
37
Access does not support the ____ data type.​

A)DECIMAL
B)​CURRENCY
C)CHAR
D)​INT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
38
In Oracle 11 g,a null value is displayed as a hyphen.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
39
To add data from an existing table to a new table,use a SELECT command in a(n)____ command.​

A)SET
B)​ADD
C)INSERT
D)​UPDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
40
To permanently remove both a table and its data,you must issue both a DROP TABLE command and a DELETE command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
41
Which of the following is a valid SQL command?​

A)DROP TABLE LEVEL1_CUSTOMER;
B)​DROP LEVEL1_CUSTOMER;
C)DELETE LEVEL1_CUSTOMER;
D)​All of the above
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
42
You use the ____________________ command to remove rows from a table.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
43
In SQL,use the ____ data type for variable-length character columns.​

A)TEXT
B)​VARCHAR
C)VARIABLE
D)​CHARLENGTH
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
44
To sort rows in a specific order,use the ____________________ clause with the desired sort key(s).​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
45
You can use the ____ clause of the ALTER TABLE command to change a column that currently rejects null values so that it will accept null values.​

A)ADD
B)​MODIFY
C)UPDATE
D)​NULL
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
46
The ROLLBACK command reverses changes made to the ____________________ only.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
47
Which of the following is a valid SQL command?​

A)COMMIT TABLE;
B)​COMMIT CHANGES;
C)COMMIT DB;
D)​COMMIT;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
48
A(n)____ can be viewed as a sequence of steps that accomplishes a single task.​

A)procedure
B)​transaction
C)program
D)​method
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
49
The format for the UPDATE command is the word UPDATE,followed by the name of the table to be updated.The next portion of the command consists of the word ____________________,followed by the name of the column to be updated,an equals sign,and the new value.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
50
During your current work session you can save your changes immediately by executing the ____________________ command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
51
If you decide that you do not want to save the changes you have made during your current work session,you can reverse the changes by executing the ____________________ command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
52
In Oracle,use the ____ command to display the structure of a table.​

A)SHOW TABLE
B)​SHOW LAYOUT
C)DESCRIBE
D)​DISPLAY LAYOUT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
53
If you specified ____ for a column when you created a table,then changing a value in a column to null is prohibited.​

A)NOT NULL
B)​NULL
C)CHAR
D)​NUMBER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
54
By placing a(n)____________________ command in an INSERT command,you can add the query results to a table.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
55
You can use the ____ command to delete an entire table and its data.​

A)ROLLBACK
B)​DELETE TABLE
C)DROP TABLE
D)​DELETE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
56
What happens if you run a DELETE command that does not contain a WHERE clause?​

A)The table will be deleted.
B)​All rows will be deleted from the table.
C)All values would be replaced by nulls.
D)​None of the above.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
57
Which of the following commands executes a rollback?​

A)ROLLBACK TABLE;
B)​ROLLBACK;
C)ROLLBACK ALL;
D)​ROLLBACK DB;
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
58
A(n)____________________ is a logical unit of work.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
59
To delete rows from the database,use the ____ command.​

A)ROLLBACK
B)​COMMIT
C)DELETE
D)​UPDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
60
The ____ command is permanent.​

A)SELECT
B)​COMMIT
C)SAVE
D)​UPDATE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
61
You can delete a table that is no longer needed by using the ____________________ TABLE command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
62
If you specified ____________________ for the column when you created the table,then changing a value in a column to null is prohibited.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
63
Describe the format of the ALTER TABLE command to add a new column.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
64
You can change the characteristics of existing columns by using the ____________________ clause of the ALTER TABLE command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
65
The format for the ALTER TABLE command is the words ALTER TABLE followed by the name of the ____________________ to be altered,followed by an appropriate clause.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
66
How can you use the COMMIT and ROLLBACK commands to support transactions?​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
67
In a transaction,if any update cannot be completed,execute the ____________________ command and discontinue the updates for the current transaction.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
68
Before beginning the updates for a transaction,commit any previous updates by executing the ____________________ command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
69
The ADD clause consists of the word ADD followed by the name of the ____________________ to be added,followed by the characteristics.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
70
In a transaction,if you can complete all updates successfully,execute the ____________________ command after completing the final update.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
71
Describe the format for the UPDATE command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
72
To change a column that currently rejects null values so that it accepts null vlaues,use the ____________________ clause in the ALTER TABLE command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
73
In Oracle,use the ____________________ command to display the structure of a table.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
74
To add a new column,use the ____________________ clause of the ALTER TABLE command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
75
With SQL,you can change a table's structure by using the ____________________ command.​
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 75 في هذه المجموعة.