WEB开发网
开发学院数据库MSSQL Server SQL Server 2008:表值参数的创建和使用 阅读

SQL Server 2008:表值参数的创建和使用

 2008-05-27 09:55:36 来源:WEB开发网   
核心提示: 然后,使用以下的DML SQL语句将数据添加到我们上面创建的表中:USE[TestDB]GOinsertintoTestLocationTable(Id,shortname,Name)select1,'NA1','NewYork'insertintoTest

然后,使用以下的DML SQL语句将数据添加到我们上面创建的表中:

  USE[TestDB]
  GO
  insertintoTestLocationTable(Id,shortname,Name)select1,'NA1','NewYork'
  insertintoTestLocationTable(Id,shortname,Name)select2,'NA2','NewYork'
  insertintoTestLocationTable(Id,shortname,Name)select3,'NA3','NewYork'
  insertintoTestLocationTable(Id,shortname,Name)select4,'EU1','London'
  insertintoTestLocationTable(Id,shortname,Name)select5,'EU2','London'
  insertintoTestLocationTable(Id,shortname,Name)select6,'AS1','Tokyo'
  insertintoTestLocationTable(Id,shortname,Name)select7,'AS2','HongKong'
  go

下一步,我们要创建一个和TestLocationTable表具有相似表结构的表类型(TABLE TYPE),语句如下:

  USE[TestDB]
  GO
  IFEXISTS(SELECT*FROMsys.typesstJOINsys.schemasssONst.schema_id=ss.schema_id
  WHEREst.name=N'OfficeLocation_Tabetype'ANDss.name=N'dbo')
  DROPTYPE[dbo].[OfficeLocation_Tabetype]
  GO
  USE[TestDB]
  GO
  CREATETYPE[dbo].[OfficeLocation_Tabetype]ASTABLE(
  [Id][int]NULL,
  [shortname][char](3)NULL,
  [name][varchar](100)NULL
  )
  GO

紧接着,我们要创建一个可以将表类型作为一个参数来接受的存储过程,使用的语句如下:

上一页  1 2 3 4  下一页

Tags:SQL Server 参数

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