In Oracle Database, the BIT_TO_NUM()
function converts a bit vector to its equivalent number.
Tag: conversion functions
ASCIISTR() Function in Oracle
In Oracle Database, the ASCIISTR()
function returns an ASCII version of the given string in the database character set.Â
TO_YMINTERVAL() Function in Oracle
In Oracle Database, the TO_YMINTERVAL()
function converts its argument to a value of INTERVAL MONTH TO YEAR
data type.
TO_TIMESTAMP() Function in Oracle
In Oracle Database, the TO_TIMESTAMP()
function converts its argument to a value of TIMESTAMP
data type.
TO_TIMESTAMP_TZ() Function in Oracle
In Oracle Database, the TO_TIMESTAMP_TZ()
function converts its argument to a value of TIMESTAMP WITH TIME ZONE
data type.
TO_DSINTERVAL() Function in Oracle
In Oracle Database, the TO_DSINTERVAL()
function converts its argument to a value of INTERVAL DAY TO SECOND
data type.
NUMTOYMINTERVAL() Function in Oracle
In Oracle Database, the NUMTOYMINTERVAL()
function converts a number to an INTERVAL YEAR TO MONTH
literal.
NUMTODSINTERVAL() Function in Oracle
In Oracle Database, the NUMTODSINTERVAL()
function converts a number to an INTERVAL DAY TO SECOND
literal.
TO_CHAR(datetime) Function in Oracle
In Oracle Database, the TO_CHAR(datetime)
function converts a datetime or interval value to a VARCHAR2
value in the format specified by the date format.
How TO_CHAR() Works in MariaDB
In MariaDB, TO_CHAR()
is a built-in string function that converts a date/time expression to a string.
The expression can be a date, datetime, time, or timestamp value.
This function was introduced in MariaDB 10.6.1 to enhance Oracle compatibility.
Continue reading