Answer the question
In order to leave comments, you need to log in
How to just pull out one field with the maximum value from 2 different tables in postgres?
This is how it didn't work:
SELECT
MAX(t_places.sys_date_update) ,
MAX(t_category_cargo.sys_date_update)
FROM
t_places
JOIN
t_category_cargo;
SELECT
MAX(t_places.sys_date_update)
FROM
t_places ;
SELECT
MAX(t_category_cargo.sys_date_update)
FROM
t_category_cargo;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question