sql模糊查询的疑惑

img


这种写法居然等价于“%丰田%”。这怎么理解呢?从来没见过这样的写法,也不报错。后面单双引号怎么理解呢

双引号后边加单引号可以理解为拼接,比如

select * from student a  where a.code ="2022"'03'; 
相当于 select * from student a  where a.code ="202203"