nugawiki # archive of experience and knowledge

nuga@nugawiki: $ cat ./docs/$1

INT overflow → 2147483647

업데이트 2026-07-21 조회수

INT 최대값 2147483647 클리핑

INT에 범위 초과 값을 넣으면 2147483647(signed INT max)로 잘림. INT(n) display width는 범위와 무관.

ALTER TABLE `t` CHANGE `col` `col` BIGINT NOT NULL;

./comments