Table a
id date
10 2020-01-01
table b
10 2019-12-12
10 2019-12-30
10 2020-10-01
일 경우 a date를 초과하지 않는 b 테이블의 컬럼 갯수를 카운트하는 쿼리를 어떻게 작성하나요?
select count(*) from b left join a on b.id=a.id where a.date >= b.date
이렇게 하면 되지 않을까여?
select count(*) from b left join a on b.id=a.id where a.date >= b.date
이렇게 하면 되지 않을까여?