create table student(id bigint auto_incrementprimary key,age bigint not null,name varchar(256) not null,score int not null);create index idx_age_scoreon student (age, score);

情景1:age 为 bigint 类型,查询为 varchar
1.1 入参前缀为数字开头
1.2 入参前缀不为数字开头

情景2:name为varchar类型,传入类型为 bigint
2.1 当传入 值为 0 时
2.2 当传入值为 2 时


