CAST « Cast Functions Operators « MySQL Tutorial

Home
MySQL Tutorial
1.Introduction
2.Select Query
3.Database
4.Table
5.Table Join
6.Subquery
7.Insert Update Delete
8.Logic Operator
9.View
10.Data Types
11.Procedure Function
12.Cursor
13.Trigger
14.Date Time Functions
15.Comparison Functions Operators
16.Aggregate Functions
17.Cast Functions Operators
18.Control Flow Functions
19.Encryption Compression Functions
20.Information Functions
21.Math Numeric Functions
22.Miscellaneous Functions
23.String Functions
24.Regular Expressions
25.Data Dictionary
26.MySQL Utilities
27.Privilege
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;
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.