강의

멘토링

커뮤니티

Inflearn Community Q&A

karvictory0720's profile image
karvictory0720

asked

Understanding Backend JavaScript with Node.js Web Development

db에 데이터 추가하기에서 rows.insertId에 0만 나옵니다

Written on

·

315

0

db에 데이터 추가할때 자동으로 번호가 붙지 않네요.

자동으로 번호가 붙는 컬럼 어떻게 추가해야 할까요?

nodejsexpressjavascript

Answer 1

0

auto_increment <- 를 추가하세요

예를들어 저같은 경우에는

create table user(

uid int not null auto_increment primary key,

email char(30) not null,

name char(10) not null,

possword char(20) not null)

이런식으로 테이블을 만들어 사용했습니다. (쿼리를 지금 그냥 막 친거라 틀린게 있을수도 있음)

karvictory0720's profile image
karvictory0720

asked

Ask a question