• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/64

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

64 Cards in this Set

  • Front
  • Back

Convert a character in any character set to an ASCII string

ASCIISTR(x)

Convert a binary number to a NUMBER

BIN_TO_NUM(x)

Convert a value to a compatible database type specified

CAST(x AS type)

Convert a value to type ROWID

CHARTOROWID(x)

Convert a value to a Unicode string in its fully normalized form in the same character set as the value

COMPOSE(x)




Unicode uses a 2-bytecharacter set and can represent over 65,000 characters; sit may also be used to represent non-English characters

Converts a value from one character set to another

CONVERT(x,source_char_set,dest_char_set)

Compare a value with another value in search. If equal return a specified value, otherwise return another specified value

DECODE(x, search,result, default)




Compares x with the value in search; if equal, DECODE() returns the value in result; otherwise the value in default is returned.

Convert a value to a Unicode string after decomposition of thestring into the same character set the value

DECOMPOSE(x)

Convert the character string containing hexadecimal digits(base-16) to a binary number (RAW) and return the RAW number

HEXTORAW(x)

Convert a number to an INTERVAL DAY TO SECOND

NUMTODSINTERVAL(x)

Convert a number to an INTERVAL YEAR TO MONTH

NUMTOYMINTERVAL(x)

Convert a binary number (RAW) to a VARCHAR2 string containing the equivalent hexadecimal number

RAWTOHEX(x)

Convert a binary number (RAW) to a NVARCHAR2 string containing the equivalent hexadecimal number

RAWTONHEX(x)




(NVARCHAR2 stores a string using the national character set)

Convert a ROWID to a VARCHAR2 string

ROWIDTOCHAR(x)

Convert a ROWID to an NVARCHAR2 string

ROWIDTONCHAR(x)

Convert a value to a BINARY_DOUBLE

TO_BINARY_DOUBLE(x)




This function was introduced in Oracle Database 10g (with the datatype)

Convert a value to a BINARY_FLOAT

TO_BINARY_FLOAT(x)




This function was introduced in Oracle Database 10g (with the datatype)

Convert a value to a binary large object (BLOB)

TO_BLOB(x)




(A BLOB is usedto store large amounts of binary data)

Convert a value to a VARCHAR2 string

TO_CHAR(x [, format])




You can supply anoptional format that indicates the format of x.

Convert a value to a character large object (CLOB)

TO_CLOB(x)




(A CLOB isused to store large amounts of character data)

Convert a value to a DATE

TO_DATE(x [, format])

Convert a string to an INTERVAL DAY TO SECOND

TO_DSINTERVAL(x)

Convert a value in the database character set to an NVARCHAR2string

TO_NCHAR(x)

Convert a value to a large object NCLOB

TO_NCLOB(x)




(An NCLOB is used to store large amounts of national language character data)

Convert a value to a NUMBER

TO_NUMBER(x [, format])

Convert the single-byte characters in a string to their corresponding multi-byte characters

TO_MULTI_BYTE(x)




The return type is the same as the type for x

Convert the multi-byte characters in a string to their corresponding single-byte characters

TO_SINGLE_BYTE(x)




The return type is the same as the type for x

Convert a string to a TIMESTAMP

TO_TIMESTAMP(x)

Convert a string to a TIMESTAMP WITH TIME ZONE

TO_TIMESTAMP_TZ(x)

Convert a string to an INTERVAL YEAR TO MONTH

TO_YMINTERVAL(x)

Convert all occurrences of a string from_string in string x to string to_string

TRANSLATE(x,from_string,to_string)

Convert the characters a string to an NCHAR characters

UNISTR(x)




(NCHAR stores a character using the national languagecharacter set)

Describe the behavior of: ASCIISTR()

ASCIISTR(x)




Converts a character in any character set to an ASCII string

Describe the behavior of: BIN_TO_NUM()

BIN_TO_NUM(x)




Converts a binary number to a NUMBER

Describe the behavior of: CAST()

CAST(x AS type)




Converts a value to a compatible database type specified

Describe the behavior of: CHARTOROWID()

CHARTOROWID(x)




Converts a value to type ROWID

Describe the behavior of: COMPOSE()

COMPOSE(x)




Converts a value to a Unicode string in its fully normalized form in the same character set as the value




Unicode uses a 2-bytecharacter set and can represent over 65,000 characters; sit may also be used to represent non-English characters

Describe the behavior of: CONVERT()

CONVERT(x,source_char_set,dest_char_set)




Converts a value from one character set to another

Describe the behavior of: DECODE()

DECODE(x, search,result, default)




Compares x with the value in search; if equal, DECODE() returns the value in result; otherwise the value in default is returned

Describe the behavior of: DECOMPOSE()

DECOMPOSE(x)




Converts a value to a Unicode string after decomposition of thestring into the same character set the value

Describe the behavior of: HEXTORAW()

HEXTORAW(x)




Converts the character string containing hexadecimal digits(base-16) to a binary number (RAW) and returns the RAW number

Describe the behavior of: NUMTODSINTERVAL()

NUMTODSINTERVAL(x)




Converts a number to an INTERVAL DAY TO SECOND

Describe the behavior of: NUMTOYMINTERVAL()

NUMTOYMINTERVAL(x)




Converts a number to an INTERVAL YEAR TO MONTH

Describe the behavior of: RAWTOHEX()

RAWTOHEX(x)




Converts a binary number (RAW) to a VARCHAR2 string containing the equivalent hexadecimal number

Describe the behavior of: RAWTONHEX()

RAWTONHEX(x)




Converts a binary number (RAW) to a NVARCHAR2 string containing the equivalent hexadecimal number




(NVARCHAR2 stores a string using the national character set)

Describe the behavior of: ROWIDTOCHAR()

ROWIDTOCHAR()




Converts a ROWID to a VARCHAR2 string

Describe the behavior of: ROWIDTONCHAR()

ROWIDTONCHAR(x)




Converts a ROWID to an NVARCHAR2 string

Describe the behavior of: TO_BINARY_DOUBLE()

TO_BINARY_DOUBLE(x)




Converts a value to a BINARY_DOUBLE




This function was introduced in Oracle Database 10g (with the datatype)

Describe the behavior of: TO_BINARY_FLOAT()

TO_BINARY_FLOAT(x)




Converts a value to a BINARY_FLOAT




This function was introduced in Oracle Database 10g (with the datatype)

Describe the behavior of: TO_BLOB()

TO_BLOB(x)




Converts a value to a binary large object (BLOB)




(A BLOB is usedto store large amounts of binary data)

Describe the behavior of: TO_CHAR()

TO_CHAR(x [, format])




Converts a value to a VARCHAR2 string




You can supply anoptional format that indicates the format of x

Describe the behavior of: TO_CLOB()

TO_CLOB(x)




Converts a value to a character large object (CLOB)




(A CLOB isused to store large amounts of character data)

Describe the behavior of: TO_DATE()

TO_DATE(x [, format])




Converts a value to a DATE

Describe the behavior of: TO_DSINTERVAL()

TO_DSINTERVAL(x)




Convert a string to an INTERVAL DAY TO SECOND

Describe the behavior of: TO_MULTI_BYTE()

TO_MULTI_BYTE(x)




Converts the single-byte characters in a string to their corresponding multi-byte characters




The return type is the same as the type for x

Describe the behavior of: TO_SINGLE_BYTE()

TO_SINGLE_BYTE(x)




Converts the multi-byte characters in a string to their corresponding single-byte characters




The return type is the same as thetype for x

Describe the behavior of: TO_NCHAR()

TO_NCHAR(x)




Converts a value in the database character set to an NVARCHAR2string

Describe the behavior of: TO_NCLOB()

TO_NCLOB(x)




Converts a value to a large object NCLOB




(An NCLOB is used to store large amounts of national language character data)

Describe the behavior of: TO_NUMBER()

TO_NUMBER(x [, format])




Converts a value to a NUMBER

Describe the behavior of: TO_TIMESTAMP()

TO_TIMESTAMP(x)




Converts a string to a TIMESTAMP

Describe the behavior of: TO_TIMESTAMP_TZ()

TO_TIMESTAMP_TZ(x)




Converts a string to a TIMESTAMP WITH TIME ZONE

Describe the behavior of: TO_YMINTERVAL()

TO_YMINTERVAL(x)




Converts a string to an INTERVAL YEAR TO MONTH

Describe the behavior of: TRANSLATE()

TRANSLATE(x,from_string,to_string)




Convert all occurrences of a string from_string in string x to string to_string

Describe the behavior of: UNISTR()

UNISTR(x)




Convert the characters a string to an NCHAR characters




(NCHAR stores a character using the national languagecharacter set)