文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>mysql 创建表时设置默认值和自分动增量

mysql 创建表时设置默认值和自分动增量

时间:2006-05-18  来源:lc0060305

create table tab(
    id int not null  AUTO_INCREMENT primary key,
    isMarry int default 1
);

insert into tab() values();//向表中插入记录

alter table tab add info char(50) null;

alter table tab add info1 char(50) not null default 123;

alter table tab drop info1; //删除字段

mysql> SET @auto_increment_increment=10;
Query OK, 0 rows affected (0.00 sec)
mysql> SHOW VARIABLES LIKE 'auto_inc%';

+--------------------------+-------+
| Variable_name            | Value |
+--------------------------+-------+

| auto_increment_increment | 10    |
| auto_increment_offset    | 1     |

+--------------------------+-------+

mysql> SELECT col FROM autoinc1;

 +-----+
 | col |
 +-----+
 | 1   |
 | 11  |
 | 21  |
 | 31  |
 +-----+

mysql> SET @auto_increment_offset=5;
 Query OK, 0 rows affected (0.00 sec)
mysql> SHOW VARIABLES LIKE 'auto_inc%';

+--------------------------+-------+
| Variable_name            | Value |
+--------------------------+-------+
| auto_increment_increment | 10    |
| auto_increment_offset    | 5     |
+--------------------------+-------+

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载