SQL/Oracle SQL 2 Flashcards
include only the result from the first result set that are not included in second result set
Except/Minus
Connective test for the absence of set membership
not in
returns the value true if the argument subquery is nonempty
exists
to change a value in a tuple without changing all values in the tuple
update
used to combiner two select statements but only returns the records which are common from both select statement
Intersect
Connective test for set membership where the set is a collection of values produced by select clause
In
greater than all
> all
are functions that takes a collection of value as an input and return as single value
Aggregate Function
retain all duplicates
Union all
used to combined the result of two select statements and eliminate duplicate
Union
is expressed in much the same way as a query
delete
greater than at least one
> some
was added to SQL because WHERE keyword cannot be used with aggregate functions
Having