I would like to count all clients and output the signup date for the 4th customer who has signed up. I mean, evaluate the number of clients that signed up and once the count of clients that have signed up reaches 4 to output the signup date and the id of the 4th customer
Sample table
customer_id     signup_date   
3994            2020-01-01
9393            2020-01-02
2144            2020-01-03
8373            2020-01-04
Output table
customer_id   signup_date
8373            2020-01-04
 
     
     
    