강의

멘토링

커뮤니티

Inflearn Community Q&A

wngus64290806's profile image
wngus64290806

asked

[Renewal] Creating NodeBird SNS with React

DB에서 데이터 삭제하면 Id를 1부터 다시 시작 할수 있는 방법이 있나요?

Resolved

Written on

·

418

0

images 테이블이던, post 테이블이던.

저 데이터를 다 지우고 다시 데이터를 넣기 시작하면 그 다음 id 번호부터 시작되는데.

다시 1부터 시작하거나 하는 방법은 없나요?

reactreduxexpressnodejsNext.js

Answer 1

0

zerocho님의 프로필 이미지
zerocho
Instructor

auto_increment를 1로 수정할 수 있습니다.

ALTER TABLE users AUTO_INCREMENT=1;
wngus64290806's profile image
wngus64290806

asked

Ask a question