細かい話だけど、auto_increment使うということは(たぶん。少なくとも自分は。)正の数しかないわけだから、unsigned付けといたほうがいい。
create文
create table foo (
id int unsigned auto_increment primary key
)
Go to list of users who liked
More than 5 years have passed since last update.
細かい話だけど、auto_increment使うということは(たぶん。少なくとも自分は。)正の数しかないわけだから、unsigned付けといたほうがいい。
create table foo (
id int unsigned auto_increment primary key
)
Register as a new user and use Qiita more conveniently
Go to list of users who liked