Java Games: Flashcards, matching, concentration, and word search.

Oracle Database Programming Section 2 Vocabulary Review

AB
CASEImplements conditional processing (IF-THEN-ELSE logic) within a SQL statement; it meets the ANSI standard.
CHAR(size)The CHAR data type stores fixed-length character strings. (Size) refers to the maximum number of characters. The database allocates a fixed space designated by (size), regardless of how many characters the actual data takes up. The default size is 1, the max size is 2000.
COALESCEReturns the first non-null expression in the list.
Conditional ExpressionsImplement IF-THEN-ELSE logic.
Conversion FunctionsFunctions that convert a value from one data type to another.
Data Type ConversionTo convert data of one data type to a different data type.
DATE data typeDate and time value between January 1, 4712 B.C. and A.D. December 31, 9999.
DD Date FormatNumeric day of the month.
DECODEImplements conditional processing (IF-THEN-ELSE logic) within a SQL statement; it is specific to the Oracle syntax.
DomainSet of all possible values of an independent variable of a function.
DY Date FormatName of the day; three-letter abbreviation
Explicit Data Type Conversion FunctionsFully and clearly expressed; leaving nothing implied
ExpressionA symbol or combination of symbols that represents a quantity or a relationship between quantities.
fmformat-model’; used to remove padded blanks or to suppress leading zeros.
IF-THEN-ELSEA programming IF statement that checks condition(s), if the condition(s) is true the THEN statement(s) get accomplished; if the condition is false the ELSE statement(s) gets accomplished.
Implicit Data Type Coversion FunctionsImplied or understood though not directly expressed.
Nesting FunctionsIs using a function call as an argument to another function.
NULLIFNULLIF compares two expressions; if they are equal, the function returns null; if they are not equal, the function returns the first expression.
NUMBER(size)A data type that is commonly used for numbers. (Size) refers to the maximum number of digits.
NVLConverts nulls to an actual value, or to force group functions to include null values.
NVL2Examines the first expression; if the first expression is not null, it returns the second expression; if the first expression is null, it returns the third expression.
RR Date FormatCentury value depends on the specified year and the last two digits of the current year.
TO_CHAR FunctionConverts dates or numbers to character strings with optional formatting.
TO_DATE FunctionConverts a character string representing a date to a date value with optional formatting.
TO_NUMBERConverts a character string containing digits to a number with optional formatting.
WW FormatNumeric week of the year.
YYYY FormatFull year in numbers.
VARCHAR2Stores variable-length strings.

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities