DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(mysql.info.gz) Charset-CONVERT

Info Catalog (mysql.info.gz) Charset-result (mysql.info.gz) Charset-operations (mysql.info.gz) Charset-CAST
 
 10.4.2 `CONVERT()'
 ------------------
 
 `CONVERT()' provides a way to convert data between different character
 sets. The syntax is:
 
      CONVERT(EXPR USING TRANSCODING_NAME)
 
 In MySQL, transcoding names are the same as the corresponding character
 set names.
 
 Examples:
 
      SELECT CONVERT(_latin1'Mu"ller' USING utf8);
      INSERT INTO utf8table (utf8column)
          SELECT CONVERT(latin1field USING utf8) FROM latin1table;
 
 `CONVERT(... USING ...)' is implemented according to the standard SQL
 specification.
 
Info Catalog (mysql.info.gz) Charset-result (mysql.info.gz) Charset-operations (mysql.info.gz) Charset-CAST
automatically generated byinfo2html