yaojing704904548

create table test(name varchar(20),password int)
//添加自增
alter table test add id int identity(1,1)//前一个1是自增开始的数字,后一个1是自增的间隔
alter table test drop column id


select * from test

insert into test values(\'we\',23)
insert into test values(\'www\',233)

truncate table test
delete from test where name=\'we\'
drop table test

 

在myeclipse中添加删除用id来判定该删除的id号

分类:

技术点:

相关文章:

  • 2021-12-22
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-26
  • 2022-02-08
  • 2021-11-30
  • 2022-12-23
  • 2021-12-12
相关资源
相似解决方案