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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test nchar/nvarchar
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. create table t1 (c nchar(10));
  8. show create table t1;
  9. drop table t1;
  10. create table t1 (c national char(10));
  11. show create table t1;
  12. drop table t1;
  13. create table t1 (c national varchar(10));
  14. show create table t1;
  15. drop table t1;
  16. create table t1 (c nvarchar(10));
  17. show create table t1;
  18. drop table t1;
  19. create table t1 (c nchar varchar(10));
  20. show create table t1;
  21. drop table t1;
  22. create table t1 (c national character varying(10));
  23. show create table t1;
  24. drop table t1;
  25. create table t1 (c nchar varying(10));
  26. show create table t1;
  27. drop table t1;
  28. # End of 4.1 tests