[Solved] Get a list of requests

Introduction

Write an introduction on Get a list of requests

Solution

Code Solution Get a list of requests


with maxes as (select client_id, max(calls.call_datetime) latest_call
from calls 
group by client_id)
select tasks.client_id, title 
from tasks 
inner join maxes on maxes.client_id = tasks.client_id
where created_datetime > maxes.latest_call

If I understood correctly, this should be it

0

generate an article with html tags on Get a list of requests