我在 ENUM 类型中的字段国家:(mysql - mariaDB)
`country` enum('France','Belgique','Suisse') DEFAULT NULL;
有没有办法将 NULL 包含到 select 中?
Select * from users where country in ('France','Suisse', NULL, '') ?
我想检索来自法国、瑞士或未指定国家的用户(NULL)
当然我仍然可以使用:
Select * from users where (country in ('France','Suisse') OR country is NULL)
但这对我来说很冗长