mysql怎么在数据库里添加表
发布网友
发布时间:2022-04-30 05:07
我来回答
共2个回答
热心网友
时间:2022-04-09 13:09
create table table_name(里面一堆字段自己看着办吧);
括号要英文状态下的
添加了表之后就可以添加内容了呀
insert into table_name(这里可要可不要了) values(这里对应的字段数据);
热心网友
时间:2022-04-09 14:27
#创建customer表:
create table customers(
id int not null auto_increment,
name char(20) not null,
address char(50) null,
city char(50) null,
age int not null,
love char(50) not null default 'No habbit',
primary key(id)
)engine=InnoDB;
#SELECT last_insert_id();这个函数可以获得返回最后一个auto_increment值.
#默认值:default 'No habbit',
#引擎类型,多为engine = InnoDB,如果省略了engine=语句,则使用默认的引擎(MyISAM)。
参考:http://www.cnblogs.com/BeginMan/p/3249472.html