SQL Eval Function Convert
Converts a string to another base data type.
Name | Description | Example |
---|---|---|
Convert_ToBoolean(value) | Converts the specified string representation of a logical value to its Boolean equivalent. | Try it |
Convert_ToByte(value) | Converts the specified string representation of a number to an equivalent 8-bit unsigned integer. | Try it |
Convert_ToDateTime(value) | Converts the specified string representation of a date and time to an equivalent date and time value. | Try it |
Convert_ToDecimal(value) | Converts the specified string representation of a date and time to an equivalent decimal value. | Try it |
Convert_ToDouble(value) | Converts the specified string representation of a number to an equivalent double-precision floating-point number. | Try it |
Convert_ToInt16(value) | Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer. | Try it |
Convert_ToInt32(value) | Converts the specified string representation of a number to an equivalent 32-bit signed integer. | Try it |
Convert_ToInt64(value) | Converts the specified string representation of a number to an equivalent 64-bit signed integer. | Try it |