数据库
cekong0704
这个作者很懒,什么都没留下…
展开
-
mysql中,已经建立的列添加 auto-increment
已经建立的表test:create table test(id int ,age int not null);需求:给id列添加auto-increment要给id添加auto-increment就得满足:id必须为主键,因为mysql表中,只有一个列能为auto-increment,而且这个列必须是主键。所以,先给id添加主键,然后再添加auto-increment,原创 2013-08-27 22:10:51 · 1503 阅读 · 0 评论 -
MySQL select into 和 SQL select into
现在有张表为student,我想将这个表里面的数据复制到一个为dust的新表中去,虽然可以用以下语句进行复制,总觉得不爽,希望各位帮助下我,谢谢。 answer 01: create table dust select * from student;//用于复制前未创建新表dust的情况下 answer 02: insert into dust select * from stud转载 2013-08-27 15:31:18 · 628 阅读 · 0 评论