ctype_filesort.inc
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Set desired charset_connection and collation_collation
  3. # before including this file.
  4. #
  5. # The next query creates a LONGTEXT column
  6. # using the current character_set_connection
  7. # and collation_connection.
  8. create table t1 select repeat('a',4000) a;
  9. delete from t1;
  10. insert into t1 values ('a'), ('a '), ('at');
  11. select collation(a),hex(a) from t1 order by a;
  12. drop table t1;