sql中创建表时要有auto_increment功能的sql代码怎么写?
如上面的代码加入auto_increment该怎么写。
补充一下,是mysql的数据库,我也用过了
$sql="create table UserName14(ID Int auto_increment,UserName char(15),UserName2 tinyint(15))";
但不知哪错了呢?
执行SQL:create table UserName15(ID Int auto_increment,UserName char(15),UserName2 tinyint(15))
错误:Incorrect table definition; there can be only one auto column and it must be defined as a key
这是什么意思呢?是不是在说要设置主键?
这个不对啊!
执行SQL:create table UserName15(ID Int Identity,UserName char(15),UserName2 tinyint(15))
错误:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Identity,UserName char(15),UserName2 tinyint(15))' at line 1
我把你们的语句移上去,都是错误的。 展开
MSSQL:
$sql="create table UserName14(ID IntI DENTITY(1,1),UserName char(15),UserName2 tinyint(15))";
MYSQL:
$sql="create table UserName14(ID Int auto_increment,UserName char(15),UserName2 tinyint(15), PRIMARY KEY (ID))";
补充:
你没有测试我那句呀~世界上怎么有这么固执的人呀~
昨天的语句我没有修改,我不敢相信我的代码会错,我刚才进行了测试,我的程序如下:
<?php
mysql_connect('**我的密码就不贴了**');
//SQL语句我增加了数据库名,其余全部是粘贴的,和上面完全相同。
$sql="create table web.UserName14 (ID Int auto_increment,UserName char(15),UserName2 tinyint(15), PRIMARY KEY (ID))";
if (mysql_query($sql)) echo "建立成功!";
else echo "执行:$sql<BR>错误:".mysql_error();
mysql_close();
?>
运行的结果如下:
D:\temp\文件>php a.php
建立成功!
数据库里面建立表成功的界面见附图。
$sql="create table UserName14(ID IntI DENTITY(1,1),UserName char(15),UserName2 tinyint(15))";
MYSQL:
$sql="create table UserName14(ID Int auto_increment,UserName char(15),UserName2 tinyint(15), PRIMARY KEY (ID))";
补充:
你没有测试我那句呀~世界上怎么有这么固执的人呀~
昨天的语句我没有修改,我不敢相信我的代码会错,我刚才进行了测试,我的程序如下:
<?php
mysql_connect('**我的密码就不贴了**');
//SQL语句我增加了数据库名,其余全部是粘贴的,和上面完全相同。
$sql="create table web.UserName14 (ID Int auto_increment,UserName char(15),UserName2 tinyint(15), PRIMARY KEY (ID))";
if (mysql_query($sql)) echo "建立成功!";
else echo "执行:$sql<BR>错误:".mysql_error();
mysql_close();
?>
运行的结果如下:
D:\temp\文件>php a.php
建立成功!
数据库里面建立表成功的界面见附图。
创建一个表名为aa,id为自动增长的主键,name 属性列
create table aa(id int primary key auto_increment,name varchar(10))
MYsql 是这样:
create table UserName14(ID mediumint not null auto_increment,UserName char(15),UserName2 tinyint(15))