码迷,mamicode.com
首页 >  
搜索关键字:auto_increment    ( 1277个结果
mysql的复习与进阶
-- mysql的复习与进阶-- 创建一个结构完整的表create table tab1(id int(5) not null auto_increment primary key comment "这是ID",name varchar(20) not null default "ran",age ...
分类:数据库   时间:2014-07-31 20:04:37    阅读次数:284
mysql表级sql语句
create table table_name ( id int unsigned primary key AUTO_INCREMENT, username varchar(32) not null, nickname varchar(16) not null default '匿名', u...
分类:数据库   时间:2014-07-31 16:43:46    阅读次数:265
mysql中多个字段共同确定唯一性
create table tbl_table ( id integer not null auto_increment, fname varchar(255), lname varchar(255), CONSTRAINT tbl_table PRIMARY KEY (id), un...
分类:数据库   时间:2014-07-30 03:17:52    阅读次数:356
Mysql,SqlServer,Oracle主键自动增长的设置
1、把主键定义为自动增长标识符类型 MySql 在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如: ??customers(id??auto_increment????,?name?(??customers(name)??...
分类:数据库   时间:2014-07-29 18:28:14    阅读次数:236
mysql--自动增长
create table teacher(t_id int primary key auto_increment,#auto_increment 自动增长 需要整型,还需要索引t_name varchar(20),t_class varchar(20),days tinyint unsigned);...
分类:数据库   时间:2014-07-29 17:21:02    阅读次数:223
mysql索引之or条件
在某些情况下,or条件可以避免全表扫描的。 1 .where 语句里面如果带有or条件, myisam表能用到索引, innodb不行。1)myisam表: CREATE TABLE IF NOT EXISTS `a` ( `id` int(1) NOT NULL AUTO_INCREMENT, `...
分类:数据库   时间:2014-07-23 12:44:26    阅读次数:303
制作PHP+MySQL留言板
创建一个数据库 CREATE?TABLE?`message`?( ??`id`?tinyint(1)?NOT?NULL?auto_increment, ??`user`?varchar(25)?NOT?NULL, ??`title`?varchar(50)?NOT?NULL, ??`content`?tinytext?NOT?N...
分类:数据库   时间:2014-07-22 08:28:34    阅读次数:301
yii 一个表单提交多个模型数据
正在需要的时候发现了这个大牛的博文,动手实践过后,记录在此。 --user表 Create?Table:?CREATE?TABLE?`user`?( ??`id`?int(11)?NOT?NULL?AUTO_INCREMENT, ??`username`?varchar(45)?DEFAULT?N...
分类:其他好文   时间:2014-07-21 10:24:59    阅读次数:239
mysql把主键定义为自动增长标识符类型
分享下mysql中如何把主键定义为自动增长标识符类型。1、把主键定义为自动增长标识符类型在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:create table customers(id int auto_increment primary key...
分类:数据库   时间:2014-07-18 21:20:02    阅读次数:244
mysql学习——mysql查询语句综合练习
练习一:设有成绩表stu如下:姓名科目成绩张三数学90张三语文50张三地理40李四语文55李四政治45王五政治30王五数学70试查询两门及两门以上不及格同学的平均分解答如下1.创建数据表create table stu(id int primary key auto_increment,name c...
分类:数据库   时间:2014-07-16 18:24:57    阅读次数:262
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!