Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Home
MySQL Tutorial
Introduction
Select Query
Database
Table
Table Join
Subquery
Insert Update Delete
Logic Operator
View
Data Types
Procedure Function
Cursor
Trigger
Date Time Functions
Comparison Functions Operators
Aggregate Functions
Cast Functions Operators
Control Flow Functions
Encryption Compression Functions
Information Functions
Math Numeric Functions
Miscellaneous Functions
String Functions
Regular Expressions
Data Dictionary
MySQL Utilities
Privilege
CAST « Cast Functions Operators « MySQL Tutorial
MySQL Tutorial
Cast Functions Operators
CAST
17.3.CAST
17.3.1.
CAST(expr AS type), CONVERT(expr,type), CONVERT(expr USING transcoding_name)
17.3.2.
Converting the string 'abc' in the default character set to the corresponding string in the utf8 character set:
17.3.3.
Convert blob column to char type
17.3.4.
The cast functions are useful when you want to create a column with a specific type in a CREATE ... SELECT statement:
17.3.5.
CAST() is useful for sorting ENUM columns in lexical order.
17.3.6.
CAST() also changes the result if you use it as part of a more complex expression such as CONCAT('Date: ',CAST(NOW() AS DATE)).
17.3.7.
SELECT CAST(1 AS UNSIGNED) - 2.0;