134 lines
5.7 KiB
Plaintext
134 lines
5.7 KiB
Plaintext
drop table if exists `T1`;
|
||
drop table if exists `T2`;
|
||
drop table if exists `T3`;
|
||
drop table if exists `T4`;
|
||
drop table if exists `T5`;
|
||
drop table if exists `T6`;
|
||
drop table if exists `T7`;
|
||
drop table if exists `T8`;
|
||
drop table if exists `T9`;
|
||
SET NAMES utf8;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
SET character_set_database = utf8;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
Warning 1681 Updating 'character_set_database' is deprecated. It will be made read-only in a future release.
|
||
CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
|
||
Warnings:
|
||
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
|
||
INSERT INTO `T1` VALUES ('アイウエオ'),('アイウエ'),('アイウ'),('アイ'),('ア'),('');
|
||
INSERT INTO `T2` VALUES ('あいうえお'),('あいうえ'),('あいう'),('あい'),('あ'),('');
|
||
INSERT INTO `T3` VALUES ('龔龖龗龞龡'),('龔龖龗龞'),('龔龖龗'),('龔龖'),('龔'),('');
|
||
INSERT INTO `T4` VALUES ('アイウエオ'),('アイウエ'),('アイウ'),('アイ'),('ア'),('');
|
||
INSERT INTO `T5` VALUES ('あいうえお'),('あいうえ'),('あいう'),('あい'),('あ'),('');
|
||
INSERT INTO `T6` VALUES ('龔龖龗龞龡'),('龔龖龗龞'),('龔龖龗'),('龔龖'),('龔'),('');
|
||
INSERT INTO `T7` VALUES ('アイウエオ'),('アイウエ'),('アイウ'),('アイ'),('ア'),('');
|
||
INSERT INTO `T8` VALUES ('あいうえお'),('あいうえ'),('あいう'),('あい'),('あ'),('');
|
||
INSERT INTO `T9` VALUES ('龔龖龗龞龡'),('龔龖龗龞'),('龔龖龗'),('龔龖'),('龔'),('');
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T1`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
ア 3
|
||
アイ 6
|
||
アイウ 9
|
||
アイウエ 12
|
||
アイウエオ 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T2`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
あ 3
|
||
あい 6
|
||
あいう 9
|
||
あいうえ 12
|
||
あいうえお 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T3`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
龔 3
|
||
龔龖 6
|
||
龔龖龗 9
|
||
龔龖龗龞 12
|
||
龔龖龗龞龡 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T4`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
ア 3
|
||
アイ 6
|
||
アイウ 9
|
||
アイウエ 12
|
||
アイウエオ 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T5`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
あ 3
|
||
あい 6
|
||
あいう 9
|
||
あいうえ 12
|
||
あいうえお 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T6`;
|
||
C1 LENGTH(`C1`)
|
||
0
|
||
龔 3
|
||
龔龖 6
|
||
龔龖龗 9
|
||
龔龖龗龞 12
|
||
龔龖龗龞龡 15
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T7`;
|
||
C1 LENGTH(`C1`)
|
||
アイウエオ 15
|
||
アイウエ 12
|
||
アイウ 9
|
||
アイ 6
|
||
ア 3
|
||
0
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T8`;
|
||
C1 LENGTH(`C1`)
|
||
あいうえお 15
|
||
あいうえ 12
|
||
あいう 9
|
||
あい 6
|
||
あ 3
|
||
0
|
||
SELECT `C1`, LENGTH(`C1`) FROM `T9`;
|
||
C1 LENGTH(`C1`)
|
||
龔龖龗龞龡 15
|
||
龔龖龗龞 12
|
||
龔龖龗 9
|
||
龔龖 6
|
||
龔 3
|
||
0
|
||
DROP TABLE `T1`;
|
||
DROP TABLE `T2`;
|
||
DROP TABLE `T3`;
|
||
DROP TABLE `T4`;
|
||
DROP TABLE `T5`;
|
||
DROP TABLE `T6`;
|
||
DROP TABLE `T7`;
|
||
DROP TABLE `T8`;
|
||
DROP TABLE `T9`;
|