Deck 3: Using SQL Queries to Insert, update, delete, and View Data

ملء الشاشة (f)
exit full mode
سؤال
When you use the insert command,you must specify column names.
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
The default sort order for the ORDER BY clause is ascending.
سؤال
The = operator is used by an exact search condition.
سؤال
The SYSDATE function supplies the current date from the system.
سؤال
All users can select data from all schemas,but they must be granted privileges to modify data.
سؤال
If you are selecting from a table in another user's schema,you must qualify the table name with the schema name.
سؤال
If you omit the search condition in the delete query no record will be deleted.
سؤال
The operator ^= indicates not equal.
سؤال
MIN is a single-row function.
سؤال
Only one search condition may be listed in a WHERE clause.
سؤال
It is necessary to use the TO_DATE function and a format model to insert "01-JAN-2005" into a date column.
سؤال
If o_date is a DATE column,the expression o_date + 10 will give a value 10 days from o_date.
سؤال
When you add a new row to a database table,it is immediately visible to other users.
سؤال
You can use a format model to add a $ to a currency value when retrieving it from the database.
سؤال
The following search condition would match the column value "Sunday": WHERE value LIKE 'Sun%'
سؤال
Instead of typing "START script-path" at the prompt in SQL*Plus you can use the @ character: @script-path.
سؤال
You can choose to increment a sequence by a number other than 1 when each next value is retrieved.
سؤال
To find all rows with NULL values for the column grade,your where condition would be: WHERE grade = NULL.
سؤال
Duplicate values will automatically be suppressed from query results unless you specify otherwise.
سؤال
When you truncate a table by mistake,you can use the roll back command to retrieve the data.
سؤال
How does Oracle prevent other users from modifying data that has been changed in a pending transaction?

A)The records are locked
B)The records are marked as dirty
C)The records are not available
D)There is nothing to prevent another user from modifying the records
سؤال
A join can only be used to retrieve data from two tables that are related via a foreign key relationship.
سؤال
You must use the GROUP BY clause in a query if you are using a group function.
سؤال
In an outer join,all rows will be returned from the outer table.
سؤال
What format model would you use to display 1237.35 as $1237.35

A)1111.11
B)9999.99
C)$####.##
D)$9999.99
سؤال
The UNION ALL operator excludes duplicate values.
سؤال
You must use a table alias when creating a self-join.
سؤال
Which command is used to give a user permission to alter another user's table?

A)ADD
B)GIVE
C)GRANT
D)ALTER
سؤال
The query INSERT INTO student ____ ('abc','123');inserts a new row into the student table.

A)DATA
B)COLS
C)ROWS
D)VALUES
سؤال
If you are joining three tables you must select a column from each table in the select portion of the statement.
سؤال
What is the difference between deleting all records from a table and truncating the table?

A)Deleting is faster
B)Truncating does not save roll back information while delete does
C)Only a DBA can truncate,anyone can delete
D)Delete does not save roll back information while truncate does
سؤال
All database views are read-only.
سؤال
If you think that you may wish to rollback part of a transaction,but not the whole thing,it is a good idea to create a ____.

A)bookmark
B)savepoint
C)transaction marker
D)buffer
سؤال
When using a nested query,the main query is executed after the subquery.
سؤال
When you drop a view,you delete the data values that appear in the view.
سؤال
How would you select the current value of the sequence s_id_seq?

A)DISPLAY s_id_seq.CURRVAL;
B)SELECT s_id_seq.CURRVAL;
C)SELECT s_id_seq.CURRVAL FROM DUAL;
D)SHOW s_id_seq.CURRVAL
سؤال
Subqueries can be nested to many levels.
سؤال
How does Oracle keep sequence information unique for each user?

A)Only one user has access to a sequence
B)Using user session
C)Each user has a private copy of the sequence
D)It is not always unique - there is a possibility that two users may receive the same sequence number
سؤال
What will happen when the following query is executed: UPDATE student
SET s_class='SR';

A)All records in the student table will be updated
B)No records in the student table will be updated
C)An error will occur
D)The first record in the student table will be updated
سؤال
A search condition begins with the keyword ____.

A)SELECT
B)WHERE
C)COMMIT
D)BEGIN
سؤال
Which character is used to indicate the outer table in an outer join?

A)-
B)+
C)/
D)&
سؤال
What is the result of selecting CONCAT(s_first,s_last)from student where s_first is "Emily" and s_last is "Smith"

A)Emily
B)Smith
C)EmilySmith
D)Emily Smith
سؤال
____ is the default date format.

A)YY-DD-MON
B)DD-MON-YY
C)DD-MON-YYYY
D)MON-DD-YYYY
سؤال
If you wish to grant a privilege to all users,what user name is used in the grant command?

A)ALL
B)EVERYONE
C)PUBLIC
D)ALLUSERS
سؤال
To create a locator for a LOB column,use the ____ function.

A)make_blob()
B)init_blob()
C)new_blob()
D)empty_blob()
سؤال
A(n)____ is an alternate name for a query column.

A)record
B)alias
C)row
D)clause
سؤال
Which of the following does not match the string '_T%' when used with the LIKE operator?

A)MT
B)MTW
C)T
D)MTWRF
سؤال
What keyword is added to the select command to retrieve only unique data?

A)UNIQUE
B)NODUP
C)DISTINCT
D)INTERSECT
سؤال
Which operator is used with a subquery that returns multiple values?

A)=
B)<>
C)IN
D)ON
سؤال
Which query is executed first in a nested subquery?

A)The innermost query
B)The outermost query
C)The main query
D)The fastest query
سؤال
The ____ command is used to run a script.

A)begin
B)open
C)start
D)newscript
سؤال
To add data to the database,use the ____ command.

A)OPEN
B)ADD
C)ADD_DATA
D)INSERT
سؤال
What character is used to retrieve all columns in a table?

A)%
B)&
C)*
D)#
سؤال
Which statement would be used to select all students with more than one grade?

A)WHERE COUNT(grade)> 1
B)WHERE COUNT(grade)>= 1
C)HAVING COUNT(grade)> 1
D)HAVING COUNT(grade)>= 1
سؤال
To modify the SQL*Plus display settings click ____ on the menu bar,and then click Environment.

A)Tools
B)Display
C)Settings
D)Options
سؤال
What part of the query contains the join condition when joining two tables?

A)SELECT
B)FROM
C)WHERE
D)GROUP BY
سؤال
To format a number value with a comma between the thousands and hundreds,use the format model ____.

A)9999
B)99,999
C)xxxx
D)xx,xxx
سؤال
What is the most likely cause when a multiple-table query returns more records than you expect?

A)Missing join condition
B)Too much data
C)Used an outer join when you should have used an inner join
D)DBMS made a mistake
سؤال
What is the name of the underlying query used to create a view?

A)View query
B)Source query
C)Select query
D)Source table
سؤال
To retrieve a list of all values that appear in one table and not in another,which operator would be used?

A)MINUS
B)SUBTRACT
C)UNION
D)INTERSECT
سؤال
When you use the ____ logical operator to create a complex search condition,only one of the conditions must be true for the complex search condition to be true.

A)OR
B)AND
C)XOR
D)NOT
سؤال
DML commands that insert,update,or delete database data are called ____________________.
سؤال
In a SQL query,the search condition begins with ____.

A)WHERE
B)FROM
C)BY
D)COND
سؤال
A series of action queries which represents a logical unit of work is known as a(n)____________________.
سؤال
To get the current value of a sequence you would select the ____________________ pseudocolumn.
سؤال
A(n)____________________ is a structure that contains information that identifies the LOB data type and points to the alternate memory location.
سؤال
The format model to display a four digit year (e.g. ,2005)is ____________________.
سؤال
To match a null value use ____.

A)<> NULL
B)!= NULL
C)IS NULL
D)IS 0
سؤال
If you do not wish to save the changes made in a transaction,use the ____________________ command to undo them.
سؤال
To delete table data without saving rollback information,use the ____________________ command.
سؤال
To suppress duplicate values from a query result use the ____________________ qualifier.
سؤال
Use a(n)____________________ to specify a non-default input or output format for NUMBERs and DATEs.
سؤال
ROUND is a ____ function.

A)group
B)single-row
C)financial
D)format
سؤال
The ____________________ logical operator can be used to combine two search conditions.The result will evaluate to true if both conditions are true.
سؤال
Use ____ to save a transaction.

A)COMMIT
B)ROLLBACK
C)SAVE
D)MODIFY
سؤال
A query that uses the ____ set operator joins the output of two unrelated queries into a single output result.

A)INTERSECT
B)DIFFERENCE
C)MERGE
D)UNION
سؤال
The more common name for a natural join is a(n)____.

A)inner join
B)outer join
C)multi-join
D)bi-join
سؤال
A view derives its data from database tables called ____ tables.

A)view
B)source
C)display
D)object
سؤال
When using the SQL*Plus interpreter,the ____ property specifies how many lines appear on a SQL*Plus page.

A)linesize
B)pagelines
C)pagesize
D)numline
سؤال
To remove privileges from a user,use the ____ command.

A)UNDO
B)LIMIT
C)REMOVE
D)REVOKE
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/100
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 3: Using SQL Queries to Insert, update, delete, and View Data
1
When you use the insert command,you must specify column names.
False
2
The default sort order for the ORDER BY clause is ascending.
True
3
The = operator is used by an exact search condition.
True
4
The SYSDATE function supplies the current date from the system.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
5
All users can select data from all schemas,but they must be granted privileges to modify data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
6
If you are selecting from a table in another user's schema,you must qualify the table name with the schema name.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
7
If you omit the search condition in the delete query no record will be deleted.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
8
The operator ^= indicates not equal.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
9
MIN is a single-row function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
10
Only one search condition may be listed in a WHERE clause.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
11
It is necessary to use the TO_DATE function and a format model to insert "01-JAN-2005" into a date column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
12
If o_date is a DATE column,the expression o_date + 10 will give a value 10 days from o_date.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
13
When you add a new row to a database table,it is immediately visible to other users.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
14
You can use a format model to add a $ to a currency value when retrieving it from the database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
15
The following search condition would match the column value "Sunday": WHERE value LIKE 'Sun%'
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
16
Instead of typing "START script-path" at the prompt in SQL*Plus you can use the @ character: @script-path.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
17
You can choose to increment a sequence by a number other than 1 when each next value is retrieved.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
18
To find all rows with NULL values for the column grade,your where condition would be: WHERE grade = NULL.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
19
Duplicate values will automatically be suppressed from query results unless you specify otherwise.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
20
When you truncate a table by mistake,you can use the roll back command to retrieve the data.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
21
How does Oracle prevent other users from modifying data that has been changed in a pending transaction?

A)The records are locked
B)The records are marked as dirty
C)The records are not available
D)There is nothing to prevent another user from modifying the records
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
22
A join can only be used to retrieve data from two tables that are related via a foreign key relationship.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
23
You must use the GROUP BY clause in a query if you are using a group function.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
24
In an outer join,all rows will be returned from the outer table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
25
What format model would you use to display 1237.35 as $1237.35

A)1111.11
B)9999.99
C)$####.##
D)$9999.99
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
26
The UNION ALL operator excludes duplicate values.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
27
You must use a table alias when creating a self-join.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
28
Which command is used to give a user permission to alter another user's table?

A)ADD
B)GIVE
C)GRANT
D)ALTER
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
29
The query INSERT INTO student ____ ('abc','123');inserts a new row into the student table.

A)DATA
B)COLS
C)ROWS
D)VALUES
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
30
If you are joining three tables you must select a column from each table in the select portion of the statement.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
31
What is the difference between deleting all records from a table and truncating the table?

A)Deleting is faster
B)Truncating does not save roll back information while delete does
C)Only a DBA can truncate,anyone can delete
D)Delete does not save roll back information while truncate does
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
32
All database views are read-only.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
33
If you think that you may wish to rollback part of a transaction,but not the whole thing,it is a good idea to create a ____.

A)bookmark
B)savepoint
C)transaction marker
D)buffer
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
34
When using a nested query,the main query is executed after the subquery.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
35
When you drop a view,you delete the data values that appear in the view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
36
How would you select the current value of the sequence s_id_seq?

A)DISPLAY s_id_seq.CURRVAL;
B)SELECT s_id_seq.CURRVAL;
C)SELECT s_id_seq.CURRVAL FROM DUAL;
D)SHOW s_id_seq.CURRVAL
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
37
Subqueries can be nested to many levels.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
38
How does Oracle keep sequence information unique for each user?

A)Only one user has access to a sequence
B)Using user session
C)Each user has a private copy of the sequence
D)It is not always unique - there is a possibility that two users may receive the same sequence number
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
39
What will happen when the following query is executed: UPDATE student
SET s_class='SR';

A)All records in the student table will be updated
B)No records in the student table will be updated
C)An error will occur
D)The first record in the student table will be updated
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
40
A search condition begins with the keyword ____.

A)SELECT
B)WHERE
C)COMMIT
D)BEGIN
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
41
Which character is used to indicate the outer table in an outer join?

A)-
B)+
C)/
D)&
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
42
What is the result of selecting CONCAT(s_first,s_last)from student where s_first is "Emily" and s_last is "Smith"

A)Emily
B)Smith
C)EmilySmith
D)Emily Smith
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
43
____ is the default date format.

A)YY-DD-MON
B)DD-MON-YY
C)DD-MON-YYYY
D)MON-DD-YYYY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
44
If you wish to grant a privilege to all users,what user name is used in the grant command?

A)ALL
B)EVERYONE
C)PUBLIC
D)ALLUSERS
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
45
To create a locator for a LOB column,use the ____ function.

A)make_blob()
B)init_blob()
C)new_blob()
D)empty_blob()
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
46
A(n)____ is an alternate name for a query column.

A)record
B)alias
C)row
D)clause
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
47
Which of the following does not match the string '_T%' when used with the LIKE operator?

A)MT
B)MTW
C)T
D)MTWRF
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
48
What keyword is added to the select command to retrieve only unique data?

A)UNIQUE
B)NODUP
C)DISTINCT
D)INTERSECT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
49
Which operator is used with a subquery that returns multiple values?

A)=
B)<>
C)IN
D)ON
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
50
Which query is executed first in a nested subquery?

A)The innermost query
B)The outermost query
C)The main query
D)The fastest query
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
51
The ____ command is used to run a script.

A)begin
B)open
C)start
D)newscript
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
52
To add data to the database,use the ____ command.

A)OPEN
B)ADD
C)ADD_DATA
D)INSERT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
53
What character is used to retrieve all columns in a table?

A)%
B)&
C)*
D)#
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
54
Which statement would be used to select all students with more than one grade?

A)WHERE COUNT(grade)> 1
B)WHERE COUNT(grade)>= 1
C)HAVING COUNT(grade)> 1
D)HAVING COUNT(grade)>= 1
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
55
To modify the SQL*Plus display settings click ____ on the menu bar,and then click Environment.

A)Tools
B)Display
C)Settings
D)Options
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
56
What part of the query contains the join condition when joining two tables?

A)SELECT
B)FROM
C)WHERE
D)GROUP BY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
57
To format a number value with a comma between the thousands and hundreds,use the format model ____.

A)9999
B)99,999
C)xxxx
D)xx,xxx
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
58
What is the most likely cause when a multiple-table query returns more records than you expect?

A)Missing join condition
B)Too much data
C)Used an outer join when you should have used an inner join
D)DBMS made a mistake
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
59
What is the name of the underlying query used to create a view?

A)View query
B)Source query
C)Select query
D)Source table
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
60
To retrieve a list of all values that appear in one table and not in another,which operator would be used?

A)MINUS
B)SUBTRACT
C)UNION
D)INTERSECT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
61
When you use the ____ logical operator to create a complex search condition,only one of the conditions must be true for the complex search condition to be true.

A)OR
B)AND
C)XOR
D)NOT
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
62
DML commands that insert,update,or delete database data are called ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
63
In a SQL query,the search condition begins with ____.

A)WHERE
B)FROM
C)BY
D)COND
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
64
A series of action queries which represents a logical unit of work is known as a(n)____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
65
To get the current value of a sequence you would select the ____________________ pseudocolumn.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
66
A(n)____________________ is a structure that contains information that identifies the LOB data type and points to the alternate memory location.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
67
The format model to display a four digit year (e.g. ,2005)is ____________________.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
68
To match a null value use ____.

A)<> NULL
B)!= NULL
C)IS NULL
D)IS 0
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
69
If you do not wish to save the changes made in a transaction,use the ____________________ command to undo them.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
70
To delete table data without saving rollback information,use the ____________________ command.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
71
To suppress duplicate values from a query result use the ____________________ qualifier.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
72
Use a(n)____________________ to specify a non-default input or output format for NUMBERs and DATEs.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
73
ROUND is a ____ function.

A)group
B)single-row
C)financial
D)format
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
74
The ____________________ logical operator can be used to combine two search conditions.The result will evaluate to true if both conditions are true.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
75
Use ____ to save a transaction.

A)COMMIT
B)ROLLBACK
C)SAVE
D)MODIFY
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
76
A query that uses the ____ set operator joins the output of two unrelated queries into a single output result.

A)INTERSECT
B)DIFFERENCE
C)MERGE
D)UNION
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
77
The more common name for a natural join is a(n)____.

A)inner join
B)outer join
C)multi-join
D)bi-join
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
78
A view derives its data from database tables called ____ tables.

A)view
B)source
C)display
D)object
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
79
When using the SQL*Plus interpreter,the ____ property specifies how many lines appear on a SQL*Plus page.

A)linesize
B)pagelines
C)pagesize
D)numline
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
80
To remove privileges from a user,use the ____ command.

A)UNDO
B)LIMIT
C)REMOVE
D)REVOKE
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 100 في هذه المجموعة.