We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
원하는 값 : 37.55017434738842 데이터베이스에 저장된 값 : 37.55017471313477
FLOAT, DOUBLE 데이터 타입 모두 부동 소수형으로 의도치 않은 값으로 반환하지만 DECIMAL 타입은 고정 소수형으로 데이터의 정확도를 요구하는 경우에 사용할 수 있다.
FLOAT
DOUBLE
DECIMAL
lat: { type: Sequelize.DECIMAL(20, 17), }, lng: { type: Sequelize.DECIMAL(20, 17), },
데이터 타입
The text was updated successfully, but these errors were encountered:
No branches or pull requests
어떤 에러인가요?
에러 메시지
원하는 값 : 37.55017434738842
데이터베이스에 저장된 값 : 37.55017471313477
에러 핸들링 방법
FLOAT
,DOUBLE
데이터 타입 모두 부동 소수형으로 의도치 않은 값으로 반환하지만DECIMAL
타입은 고정 소수형으로 데이터의 정확도를 요구하는 경우에 사용할 수 있다.에러 핸들링을 위해 참고한 레퍼런스 링크
데이터 타입
The text was updated successfully, but these errors were encountered: