Jump to content

auto incriment


mbvo

Recommended Posts

auto increment is not a datatype but rather an attribute. if you're wanting an auto incrementing column, just set it up in your create table statement like this:
[code]
CREATE TABLE myTable (
  id int(11) auto_increment primary key
  -- continue your table on here --
[/code]
Link to comment
https://forums.phpfreaks.com/topic/22993-auto-incriment/#findComment-103803
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.