DB/MariaDB
최신 데이터만 제외하고 나머지 데이터 가져오기
so_o
2023. 4. 19. 19:20
SELECT *
FROM mileage
WHERE created_date NOT IN (SELECT MAX(created_date) FROM test)