Home > Database > Mysql Tutorial > body text

给MySQL表格添加一个自动增长的主键列

WBOY
Release: 2016-06-07 17:11:45
Original
1083 people have browsed it

曾经给某个Mysql表格添加主键时,用了以下SQL语句 alter table `表格名` add column `列名` int not null auto_increment comm

曾经给某个Mysql表格添加主键时,用了以下SQL语句

  • 结果遇到如下两个错误 :

    这个错误是说before附近有语法错误

    这个错误是说只有主键才能指定自动增长列

    网上找了下原因,说是要先添加列,,再修改列。我觉得这样挺麻烦的。自己试验了一下,一句话也能搞定:

  • 上面语句表示给某个表格添加一个自动增长的主键字段,并且将该字段放在第一列。

    如果你想放到其他列后面,可以将上面sql语句中的 first 换成  after `已经有的列名`

    linux

  • source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template