以下sql文查询结果都一样
SELECT * FROM tb_user where birthday between '2021-01-01' and '2021-05-05';
SELECT * FROM tb_user where birthday between "2021-01-01" and "2021-05-05";
SELECT * FROM tb_user where birthday between '2021-01-01' and "2021-05-05";
select * from tb_user where birthday >= '2021-01-01' and birthday <='2021-05-05';
select * from tb_user where birthday >= 2021-01-01 and birthday <= '2021-05-05';
select * from tb_user where birthday >= "2021-01-01" and birthday <= "2021-05-05";
select * from tb_user where birthday >= "2021-01-01" and birthday <= '2021-05-05';