ctype_latin2_ch.result

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 32 行

RESULT
32
字号
drop table if exists t1;set names latin2;select 'A' = 'a' collate latin2_czech_cs;'A' = 'a' collate latin2_czech_cs0create table t1 (id  int(5) not null,    tt  char(255) not null) character set latin2 collate latin2_czech_cs;insert into t1 values (1,'Aa');insert into t1 values (2,'Aas');alter table t1 add primary key aaa(tt);select * from t1 where tt like 'Aa%';id	tt1	Aa2	Aasselect * from t1 ignore index (primary) where tt like 'Aa%';id	tt1	Aa2	Aasselect * from t1 where tt like '%Aa%';id	tt1	Aa2	Aasselect * from t1 where tt like 'AA%';id	ttselect * from t1 ignore index (primary) where tt like 'AA%';id	ttselect * from t1 where tt like '%AA%';id	ttdrop table t1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?