TypeError: Object of type date is not JSON serializable 에러해결
본문 바로가기

Backend/DataBase

TypeError: Object of type date is not JSON serializable 에러해결

기존 쿼리에 새로 추가된 컬럼을 추가하니까 에러가 빵터졌다.

sql상에서는 문제없었는데..

알고보니 간단한거였음!

data타입으로 변환해서 넣어주면해결됨

DATE_FORMAT(컬럼명, '%Y-%m-%d %H:%i') AS 컬럼명

 

반응형