Deck 5: Transact:SQL Primer

Full screen (f)
exit full mode
Question
What type of functions are used to summarize data in a grouped column or for all records in a table?

A)Summary procedures
B)Aggregate functions
C)Grouping statements
D)Totaling processes
Use Space or
up arrow
down arrow
to flip the card.
Question
If Col1 contains the string "Hello" and Col2 is Null, what is the result of SELECT Col1 + Col2?

A)"Hello"
B)Error
C)Null
D)"HelloNull"
Question
Which command returns the product of two columns returned in a column named ProdC1C2?

A)SELECT Col1 * Col2 AS ProdC1C2
B)SELECT AS ProdC1C2 Col1 x Col2
C)SELECT FROM Col1 * Col2 TOTAL ProdC1C2
D)SELECT (Col1, Col2)PRODUCT ProdC1C2
Question
Which command selects all columns in a table?

A)SELECT #
B)SELECT ;
C)SELECT *
D)SELECT @
Question
Which command changes the database context?

A)OPEN [Database Name]
B)USE [Database Name];
C)SELECT [Database Name];
D)SWITCH [Database Name]
Question
If you want to remove duplicates from a result set, which command should you use?

A)SELECT AS
B)SELECT UNIQUE
C)SELECT ONLY
D)SELECT DISTINCT
Question
Which command will result in records that have a Col1 value greater than 100?

A)SELECT Col1 FROM Table1 IF Col1 GT 100
B)SELECT Col1 FROM Table1 WHERE Col1 > 100
C)SELECT Col1 > 100 FROM Table1
D)IF Col1 > 100 SELECT * FROM Table1
Question
Which of the following represents correct syntax for a SELECT statement?

A)SELECT [Column Name] FROM [Table Name]
B)SELECT [Object Name] FOR [Column Name];
C)SELECT [Database Name] From [Column Name];
D)SELECT [Table Name] FROM [Row Name]
Question
A string concatenation operation evaluates to null if all of the input columns have a value.
Question
What keyword can you include in a SELECT statement to create a column alias for the column returned in the result set?

A)FROM
B)FOR
C)ALIAS
D)AS
Question
Which clause do you use with a join operation to specify which columns from each table should be used as the matching key?

A)FROM
B)ON
C)BY
D)WITH
Question
The database schema is defined by the DDL components in the SQL programming language.
Question
If you want to compare a value in a column against a list of values, which syntax would you use?

A)WHERE [Column Name] LIKE ([Value1], [Value2], [Value3])
B)WHERE [Column Name] = ([Value1], [Value2], [Value3])
C)WHERE [Column Name] IN ([Value1], [Value2], [Value3])
D)WHERE [Column Name] EXISTS ([Value1], [Value2], [Value3])
Question
Which of the following is true about the SQL language?

A)it is case sensitive
B)keywords must be written in uppercase
C)the semicolon is a statement terminator
D)statement terminators are required at the end of a statement
Question
Which syntax should you use to sort the result set in reverse alphabetic order.

A)ORDER ON [Column Name] Z-A
B)SORT REVERSE BY [Column Name]
C)SORT ON [Column Name] REVERSE
D)ORDER BY [Column Name] DESC
Question
A database operation that can be used to merge and retrieve data stored in more than one table view is called a SELECT.
Question
Transact-SQL is the variant of SQL developed by Microsoft and Sybase.
Question
SQL is an imperative programming language.
Question
Which of the following best describes the IntelliSense feature in Query Editor?

A)it is a database building wizard
B)it is a text AutoComplete feature
C)it is a visual query builder
D)it is used to create tables
Question
Which command returns all the columns for records in which the value of Col1 is greater than 10 but has a value less than Col2?

A)SELECT * FROM Table1 WHERE Col1 10
B)SELECT ALL FROM Table1 WHEN Col1 10
C)SELECT * FROM Table1 IF Col1 > 10 BUT Col1 < Col2
D)SELECT ALL FROM Table1 LIKE Col1 > 10 NOT Col1 < Col2
Question
Define the logical operators AND, OR, and NOT.
Question
Data ___________ language allows you to configure the logical security in the database.
Question
What are the keywords CHECK, UNIQUE, and NOT NULL referred to as?

A)limits
B)keys
C)constraints
D)references
Question
Use the ___________ statement along with ADD or DROP to modify or rename existing views and tables.
Question
How does the SQL language handle case and what are the recommendations on using case when constructing SQL statements?
Question
Use the _________ keyword to match a string based on a pattern.
Question
How do you combine data using joins?
Question
Describe the use of the SELECT statement.
Question
What are the key requirements to keep in mind when creating an INSERT statement?
Question
Which type of merge statement only combines rows that exist in two result sets?

A)UNION
B)EXCEPT
C)INTERSECT
D)JOIN
Question
How can you ease the managing of permissions across different objects?
Question
Which type of join returns all columns from both tables and only returns rows where the join column values are equal?

A)inner
B)left outer
C)right outer
D)full outer
Question
Describe why you would use the data control language component of the SQL programming language.
Question
What is the name for the type of query where a SQL query is embedded within another SQL query?

A)nested query
B)embedded query
C)subquery
D)inner query
Question
What is a qualified name?
Question
What is a null value and how does it affect arithmetic or string operations in SQL statements?
Question
Use the syntax SELECT ________ (expression)[Column Name] to limit the result set to the number of rows defined by the expression.
Question
Which statement is used to modify column values of an existing row in a table?

A)ALTER
B)CHANGE
C)MODIFY
D)UPDATE
Question
Use the syntax WHERE [Column Name] ______________ (SELECT * FROM [Table Name 2])when you want to compare a value of a column against the results of a subquery.
Question
What is a statement terminator and how are they used in the SQL language?
Question
Match between columns
a logical operator that specifies that all conditions must be true
data manipulation language
a logical operator that specifies that all conditions must be true
AND
a logical operator that specifies that all conditions must be true
OR
a logical operator that specifies that all conditions must be true
DEFAULT
a logical operator that specifies that all conditions must be true
CHECK
a logical operator that specifies that all conditions must be true
GROUP BY
a logical operator that specifies that all conditions must be true
REVOKE
a logical operator that specifies that all conditions must be true
database context
a logical operator that specifies that all conditions must be true
GRANT
a logical operator that specifies that all conditions must be true
EXCEPT
a constraint used to limit values of a column before a change is committed to the database
data manipulation language
a constraint used to limit values of a column before a change is committed to the database
AND
a constraint used to limit values of a column before a change is committed to the database
OR
a constraint used to limit values of a column before a change is committed to the database
DEFAULT
a constraint used to limit values of a column before a change is committed to the database
CHECK
a constraint used to limit values of a column before a change is committed to the database
GROUP BY
a constraint used to limit values of a column before a change is committed to the database
REVOKE
a constraint used to limit values of a column before a change is committed to the database
database context
a constraint used to limit values of a column before a change is committed to the database
GRANT
a constraint used to limit values of a column before a change is committed to the database
EXCEPT
a SQL statement used to remove permissions directly from a database user or from a role
data manipulation language
a SQL statement used to remove permissions directly from a database user or from a role
AND
a SQL statement used to remove permissions directly from a database user or from a role
OR
a SQL statement used to remove permissions directly from a database user or from a role
DEFAULT
a SQL statement used to remove permissions directly from a database user or from a role
CHECK
a SQL statement used to remove permissions directly from a database user or from a role
GROUP BY
a SQL statement used to remove permissions directly from a database user or from a role
REVOKE
a SQL statement used to remove permissions directly from a database user or from a role
database context
a SQL statement used to remove permissions directly from a database user or from a role
GRANT
a SQL statement used to remove permissions directly from a database user or from a role
EXCEPT
a logical operator that specifies that any condition must be true
data manipulation language
a logical operator that specifies that any condition must be true
AND
a logical operator that specifies that any condition must be true
OR
a logical operator that specifies that any condition must be true
DEFAULT
a logical operator that specifies that any condition must be true
CHECK
a logical operator that specifies that any condition must be true
GROUP BY
a logical operator that specifies that any condition must be true
REVOKE
a logical operator that specifies that any condition must be true
database context
a logical operator that specifies that any condition must be true
GRANT
a logical operator that specifies that any condition must be true
EXCEPT
the database that is used by the database engine to resolve object names
data manipulation language
the database that is used by the database engine to resolve object names
AND
the database that is used by the database engine to resolve object names
OR
the database that is used by the database engine to resolve object names
DEFAULT
the database that is used by the database engine to resolve object names
CHECK
the database that is used by the database engine to resolve object names
GROUP BY
the database that is used by the database engine to resolve object names
REVOKE
the database that is used by the database engine to resolve object names
database context
the database that is used by the database engine to resolve object names
GRANT
the database that is used by the database engine to resolve object names
EXCEPT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
data manipulation language
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
AND
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
OR
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
DEFAULT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
CHECK
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
GROUP BY
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
REVOKE
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
database context
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
GRANT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
EXCEPT
the most widely used component of the SQL language; provides the means to query data
data manipulation language
the most widely used component of the SQL language; provides the means to query data
AND
the most widely used component of the SQL language; provides the means to query data
OR
the most widely used component of the SQL language; provides the means to query data
DEFAULT
the most widely used component of the SQL language; provides the means to query data
CHECK
the most widely used component of the SQL language; provides the means to query data
GROUP BY
the most widely used component of the SQL language; provides the means to query data
REVOKE
the most widely used component of the SQL language; provides the means to query data
database context
the most widely used component of the SQL language; provides the means to query data
GRANT
the most widely used component of the SQL language; provides the means to query data
EXCEPT
a SQL statement used to assign permissions directly to a database user or via a role
data manipulation language
a SQL statement used to assign permissions directly to a database user or via a role
AND
a SQL statement used to assign permissions directly to a database user or via a role
OR
a SQL statement used to assign permissions directly to a database user or via a role
DEFAULT
a SQL statement used to assign permissions directly to a database user or via a role
CHECK
a SQL statement used to assign permissions directly to a database user or via a role
GROUP BY
a SQL statement used to assign permissions directly to a database user or via a role
REVOKE
a SQL statement used to assign permissions directly to a database user or via a role
database context
a SQL statement used to assign permissions directly to a database user or via a role
GRANT
a SQL statement used to assign permissions directly to a database user or via a role
EXCEPT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
data manipulation language
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
AND
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
OR
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
DEFAULT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
CHECK
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
GROUP BY
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
REVOKE
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
database context
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
GRANT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
EXCEPT
an operator that returns rows from the first query that do not exist in the second query
data manipulation language
an operator that returns rows from the first query that do not exist in the second query
AND
an operator that returns rows from the first query that do not exist in the second query
OR
an operator that returns rows from the first query that do not exist in the second query
DEFAULT
an operator that returns rows from the first query that do not exist in the second query
CHECK
an operator that returns rows from the first query that do not exist in the second query
GROUP BY
an operator that returns rows from the first query that do not exist in the second query
REVOKE
an operator that returns rows from the first query that do not exist in the second query
database context
an operator that returns rows from the first query that do not exist in the second query
GRANT
an operator that returns rows from the first query that do not exist in the second query
EXCEPT
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/41
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 5: Transact:SQL Primer
1
What type of functions are used to summarize data in a grouped column or for all records in a table?

A)Summary procedures
B)Aggregate functions
C)Grouping statements
D)Totaling processes
B
2
If Col1 contains the string "Hello" and Col2 is Null, what is the result of SELECT Col1 + Col2?

A)"Hello"
B)Error
C)Null
D)"HelloNull"
C
3
Which command returns the product of two columns returned in a column named ProdC1C2?

A)SELECT Col1 * Col2 AS ProdC1C2
B)SELECT AS ProdC1C2 Col1 x Col2
C)SELECT FROM Col1 * Col2 TOTAL ProdC1C2
D)SELECT (Col1, Col2)PRODUCT ProdC1C2
A
4
Which command selects all columns in a table?

A)SELECT #
B)SELECT ;
C)SELECT *
D)SELECT @
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
5
Which command changes the database context?

A)OPEN [Database Name]
B)USE [Database Name];
C)SELECT [Database Name];
D)SWITCH [Database Name]
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
6
If you want to remove duplicates from a result set, which command should you use?

A)SELECT AS
B)SELECT UNIQUE
C)SELECT ONLY
D)SELECT DISTINCT
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
7
Which command will result in records that have a Col1 value greater than 100?

A)SELECT Col1 FROM Table1 IF Col1 GT 100
B)SELECT Col1 FROM Table1 WHERE Col1 > 100
C)SELECT Col1 > 100 FROM Table1
D)IF Col1 > 100 SELECT * FROM Table1
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
8
Which of the following represents correct syntax for a SELECT statement?

A)SELECT [Column Name] FROM [Table Name]
B)SELECT [Object Name] FOR [Column Name];
C)SELECT [Database Name] From [Column Name];
D)SELECT [Table Name] FROM [Row Name]
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
9
A string concatenation operation evaluates to null if all of the input columns have a value.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
10
What keyword can you include in a SELECT statement to create a column alias for the column returned in the result set?

A)FROM
B)FOR
C)ALIAS
D)AS
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
11
Which clause do you use with a join operation to specify which columns from each table should be used as the matching key?

A)FROM
B)ON
C)BY
D)WITH
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
12
The database schema is defined by the DDL components in the SQL programming language.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
13
If you want to compare a value in a column against a list of values, which syntax would you use?

A)WHERE [Column Name] LIKE ([Value1], [Value2], [Value3])
B)WHERE [Column Name] = ([Value1], [Value2], [Value3])
C)WHERE [Column Name] IN ([Value1], [Value2], [Value3])
D)WHERE [Column Name] EXISTS ([Value1], [Value2], [Value3])
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
14
Which of the following is true about the SQL language?

A)it is case sensitive
B)keywords must be written in uppercase
C)the semicolon is a statement terminator
D)statement terminators are required at the end of a statement
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
15
Which syntax should you use to sort the result set in reverse alphabetic order.

A)ORDER ON [Column Name] Z-A
B)SORT REVERSE BY [Column Name]
C)SORT ON [Column Name] REVERSE
D)ORDER BY [Column Name] DESC
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
16
A database operation that can be used to merge and retrieve data stored in more than one table view is called a SELECT.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
17
Transact-SQL is the variant of SQL developed by Microsoft and Sybase.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
18
SQL is an imperative programming language.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
19
Which of the following best describes the IntelliSense feature in Query Editor?

A)it is a database building wizard
B)it is a text AutoComplete feature
C)it is a visual query builder
D)it is used to create tables
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
20
Which command returns all the columns for records in which the value of Col1 is greater than 10 but has a value less than Col2?

A)SELECT * FROM Table1 WHERE Col1 10
B)SELECT ALL FROM Table1 WHEN Col1 10
C)SELECT * FROM Table1 IF Col1 > 10 BUT Col1 < Col2
D)SELECT ALL FROM Table1 LIKE Col1 > 10 NOT Col1 < Col2
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
21
Define the logical operators AND, OR, and NOT.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
22
Data ___________ language allows you to configure the logical security in the database.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
23
What are the keywords CHECK, UNIQUE, and NOT NULL referred to as?

A)limits
B)keys
C)constraints
D)references
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
24
Use the ___________ statement along with ADD or DROP to modify or rename existing views and tables.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
25
How does the SQL language handle case and what are the recommendations on using case when constructing SQL statements?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
26
Use the _________ keyword to match a string based on a pattern.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
27
How do you combine data using joins?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
28
Describe the use of the SELECT statement.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
29
What are the key requirements to keep in mind when creating an INSERT statement?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
30
Which type of merge statement only combines rows that exist in two result sets?

A)UNION
B)EXCEPT
C)INTERSECT
D)JOIN
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
31
How can you ease the managing of permissions across different objects?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
32
Which type of join returns all columns from both tables and only returns rows where the join column values are equal?

A)inner
B)left outer
C)right outer
D)full outer
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
33
Describe why you would use the data control language component of the SQL programming language.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
34
What is the name for the type of query where a SQL query is embedded within another SQL query?

A)nested query
B)embedded query
C)subquery
D)inner query
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
35
What is a qualified name?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
36
What is a null value and how does it affect arithmetic or string operations in SQL statements?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
37
Use the syntax SELECT ________ (expression)[Column Name] to limit the result set to the number of rows defined by the expression.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
38
Which statement is used to modify column values of an existing row in a table?

A)ALTER
B)CHANGE
C)MODIFY
D)UPDATE
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
39
Use the syntax WHERE [Column Name] ______________ (SELECT * FROM [Table Name 2])when you want to compare a value of a column against the results of a subquery.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
40
What is a statement terminator and how are they used in the SQL language?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
41
Match between columns
a logical operator that specifies that all conditions must be true
data manipulation language
a logical operator that specifies that all conditions must be true
AND
a logical operator that specifies that all conditions must be true
OR
a logical operator that specifies that all conditions must be true
DEFAULT
a logical operator that specifies that all conditions must be true
CHECK
a logical operator that specifies that all conditions must be true
GROUP BY
a logical operator that specifies that all conditions must be true
REVOKE
a logical operator that specifies that all conditions must be true
database context
a logical operator that specifies that all conditions must be true
GRANT
a logical operator that specifies that all conditions must be true
EXCEPT
a constraint used to limit values of a column before a change is committed to the database
data manipulation language
a constraint used to limit values of a column before a change is committed to the database
AND
a constraint used to limit values of a column before a change is committed to the database
OR
a constraint used to limit values of a column before a change is committed to the database
DEFAULT
a constraint used to limit values of a column before a change is committed to the database
CHECK
a constraint used to limit values of a column before a change is committed to the database
GROUP BY
a constraint used to limit values of a column before a change is committed to the database
REVOKE
a constraint used to limit values of a column before a change is committed to the database
database context
a constraint used to limit values of a column before a change is committed to the database
GRANT
a constraint used to limit values of a column before a change is committed to the database
EXCEPT
a SQL statement used to remove permissions directly from a database user or from a role
data manipulation language
a SQL statement used to remove permissions directly from a database user or from a role
AND
a SQL statement used to remove permissions directly from a database user or from a role
OR
a SQL statement used to remove permissions directly from a database user or from a role
DEFAULT
a SQL statement used to remove permissions directly from a database user or from a role
CHECK
a SQL statement used to remove permissions directly from a database user or from a role
GROUP BY
a SQL statement used to remove permissions directly from a database user or from a role
REVOKE
a SQL statement used to remove permissions directly from a database user or from a role
database context
a SQL statement used to remove permissions directly from a database user or from a role
GRANT
a SQL statement used to remove permissions directly from a database user or from a role
EXCEPT
a logical operator that specifies that any condition must be true
data manipulation language
a logical operator that specifies that any condition must be true
AND
a logical operator that specifies that any condition must be true
OR
a logical operator that specifies that any condition must be true
DEFAULT
a logical operator that specifies that any condition must be true
CHECK
a logical operator that specifies that any condition must be true
GROUP BY
a logical operator that specifies that any condition must be true
REVOKE
a logical operator that specifies that any condition must be true
database context
a logical operator that specifies that any condition must be true
GRANT
a logical operator that specifies that any condition must be true
EXCEPT
the database that is used by the database engine to resolve object names
data manipulation language
the database that is used by the database engine to resolve object names
AND
the database that is used by the database engine to resolve object names
OR
the database that is used by the database engine to resolve object names
DEFAULT
the database that is used by the database engine to resolve object names
CHECK
the database that is used by the database engine to resolve object names
GROUP BY
the database that is used by the database engine to resolve object names
REVOKE
the database that is used by the database engine to resolve object names
database context
the database that is used by the database engine to resolve object names
GRANT
the database that is used by the database engine to resolve object names
EXCEPT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
data manipulation language
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
AND
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
OR
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
DEFAULT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
CHECK
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
GROUP BY
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
REVOKE
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
database context
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
GRANT
a SQL keyword used in a SELECT statement to collect data across multiple records and then group the results by one or more columns
EXCEPT
the most widely used component of the SQL language; provides the means to query data
data manipulation language
the most widely used component of the SQL language; provides the means to query data
AND
the most widely used component of the SQL language; provides the means to query data
OR
the most widely used component of the SQL language; provides the means to query data
DEFAULT
the most widely used component of the SQL language; provides the means to query data
CHECK
the most widely used component of the SQL language; provides the means to query data
GROUP BY
the most widely used component of the SQL language; provides the means to query data
REVOKE
the most widely used component of the SQL language; provides the means to query data
database context
the most widely used component of the SQL language; provides the means to query data
GRANT
the most widely used component of the SQL language; provides the means to query data
EXCEPT
a SQL statement used to assign permissions directly to a database user or via a role
data manipulation language
a SQL statement used to assign permissions directly to a database user or via a role
AND
a SQL statement used to assign permissions directly to a database user or via a role
OR
a SQL statement used to assign permissions directly to a database user or via a role
DEFAULT
a SQL statement used to assign permissions directly to a database user or via a role
CHECK
a SQL statement used to assign permissions directly to a database user or via a role
GROUP BY
a SQL statement used to assign permissions directly to a database user or via a role
REVOKE
a SQL statement used to assign permissions directly to a database user or via a role
database context
a SQL statement used to assign permissions directly to a database user or via a role
GRANT
a SQL statement used to assign permissions directly to a database user or via a role
EXCEPT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
data manipulation language
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
AND
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
OR
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
DEFAULT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
CHECK
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
GROUP BY
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
REVOKE
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
database context
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
GRANT
a constraint that causes the value of a field to be autopopulated on insertion of a record if the value is not specified
EXCEPT
an operator that returns rows from the first query that do not exist in the second query
data manipulation language
an operator that returns rows from the first query that do not exist in the second query
AND
an operator that returns rows from the first query that do not exist in the second query
OR
an operator that returns rows from the first query that do not exist in the second query
DEFAULT
an operator that returns rows from the first query that do not exist in the second query
CHECK
an operator that returns rows from the first query that do not exist in the second query
GROUP BY
an operator that returns rows from the first query that do not exist in the second query
REVOKE
an operator that returns rows from the first query that do not exist in the second query
database context
an operator that returns rows from the first query that do not exist in the second query
GRANT
an operator that returns rows from the first query that do not exist in the second query
EXCEPT
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 41 flashcards in this deck.