WEB开发网
开发学院数据库MSSQL Server SQL Server 2008之行值构造器 阅读

SQL Server 2008之行值构造器

 2008-05-09 09:55:45 来源:WEB开发网   
核心提示: insert into MyTest2 select 1 , 'John' , 'Smith' , 150000.00insert into MyTest2 select 2 , 'Hillary' , 'Swank' , 2

insert into MyTest2 select 1 , 'John' , 'Smith' , 150000.00

insert into MyTest2 select 2 , 'Hillary' , 'Swank' , 250000.00

insert into MyTest2 select 3 , 'Elisa' , 'Smith' , 120000.00

insert into MyTest2 select 4 , 'Liz' , 'Carleno' , 151000.00

insert into MyTest2 select 5 , 'Tony' , 'Mcnamara' , 150300.00

执行结果如下:

(1 row(s) affected)

(1 row(s) affected)

(1 row(s) affected)

(1 row(s) affected)

(1 row(s) affected)

方法三

同样的,我们再假设上述的MyTestDB数据库中有表MyTest3,如下:

  USE[MyTestDB]
  GO
  IFEXISTS(SELECT*FROMsys.objectsWHEREobject_id=OBJECT_ID(N'[dbo].[MyTest3]')ANDtypein(N'U'))
  DROPTABLE[dbo].[MyTest3]
  GO
  USE[MyTestDB]
  GO
  SETANSI_NULLSON
  GO
  SETQUOTED_IDENTIFIERON
  GO
  SETANSI_PADDINGON
  GO
  CREATETABLE[dbo].[MyTest3](
  [Id][int]NULL,
  [Fname][varchar](100)NULL,
  [Lname][varchar](100)NULL,
  [salary][money]NULL
  )ON[PRIMARY]
  GO
  SETANSI_PADDINGOFF
  GO

下面我们用第三种传统的插入方法同样添加5行数据,这里使用的是带SELECT从句和UNION从句的INSERT SQL语句,脚本如下:

insert into MyTest3

select 1 , 'John' , 'Smith' , 150000.00

上一页  1 2 3 4  下一页

Tags:SQL Server 之行

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接