Get the minimum value between two columns for each row
This is my datasheet:
| uid | date | visit | transactionDate |
+-----+----------+-------+-----------------+
| 1 | 6/2/2014 | 1 | 6/9/2014 |
| 1 | 6/2/2014 | 1 | 8/4/2014 |
| 2 | 6/2/2014 | 1 | 8/2/2014 |
| 2 | 6/2/2014 | 1 | 10/17/2014 |
| 2 | 6/2/2014 | 1 | 10/20/2014 |
| 3 | 6/2/2014 | 1 | 6/9/2014 |
| 3 | 6/2/2014 | 1 | 6/10/2014 |
| 3 | 6/2/2014 | 1 | 6/11/2014 |
| 3 | 6/2/2014 | 1 | 6/12/2014 |
| 3 | 6/2/2014 | 1 | 6/14/2014 |
| 3 | 6/2/2014 | 1 | 6/15/2014 |
| 3 | 6/2/2014 | 1 | 6/17/2014 |
| 3 | 6/2/2014 | 1 | 6/18/2014 |
| 3 | 6/2/2014 | 1 | 6/23/2014 |
I am trying to write a query to pull at least two date and date columns of a transaction. Is there a way to do something like MIN (date, transactionDate)? The request should select something like this:
uid 1 then minimum of date and transaction_dt
uid 2 then min date and transaction_dt
+3
source to share
4 answers
Use LEAST () with the MIN () function .
Try the following:
SELECT a.uid, MIN(LEAST(a.date, a.transaction_dt)) tdate
FROM tableA a
GROUP BY a.uid;
OR
SELECT a.uid, MIN(a.tdate) tdate
FROM (SELECT a.uid, MIN(a.date) tdate FROM tableA a GROUP BY a.uid
UNION
SELECT a.uid, MIN(a.transaction_dt) tdate FROM tableA a GROUP BY a.uid
) AS a
GROUP BY a.uid;
0
source to share