MySQL中如何使null=null成立
select case when null = null then 'true' else 'false' end hh;
select case when null <=> null then 'true' else 'false' end hh;
select case when null = null then 'true' else 'false' end hh;
select case when null <=> null then 'true' else 'false' end hh;