7

After searching I can't figure out what I need to do in ALTER TABLE genres to change the col id to genre_id any ideas?

Johnny
  • 1,963
  • 4
  • 21
  • 24

1 Answers1

12
alter table genres change id genre_id int(10) auto_increment;
RAS
  • 8,100
  • 16
  • 64
  • 86
XMen
  • 29,384
  • 41
  • 99
  • 151