skip to Main Content

where statement breaks full join in MySQL

Consider the following tables: create table `t1` ( `date` date, `value` int ); create table `t2` ( `date` date, `value` int ); insert into `t1` (`date`, `value`) values ("2022-01-01", 1), ("2022-03-01", 3), ("2022-04-01", 4); insert into `t2` (`date`, `value`) values…

VIEW QUESTION
Back To Top
Search