1 --1 创建数据库
 2 create database AAA
 3 
 4 --2 使用数据库
 5 use AAA
 6 
 7 --3 在AAA数据库下创建table
 8 create table BBB
 9 (
10     bId int identity(1,1) primary key,
11     bName nvarchar(100) not null
12 )
13 
14 --4 删除AAA数据库
15 drop database AAA
create DB and table

相关文章:

  • 2021-09-17
  • 2021-09-11
  • 2022-12-23
  • 2021-10-17
  • 2021-11-27
  • 2022-01-13
猜你喜欢
  • 2022-12-23
  • 2021-09-10
  • 2021-12-25
  • 2021-08-11
  • 2021-11-13
相关资源
相似解决方案