科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道[Sql server]教程SQL存储过程和算法(1)

[Sql server]教程SQL存储过程和算法(1)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[t]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

作者:iTbulo.COM 来源:iTbulo.COM 2007年9月15日

关键字: 存储过程 数据库 SQL Server SQL Server 各版本

  • 评论
  • 分享微博
  • 分享邮件
 

代码还在完善中

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[t]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

drop table [dbo].[t]

GO

CREATE TABLE [dbo].[t] (

[id] [int] IDENTITY (1, 1) NOT NULL ,

[lid] [nvarchar] (50) ,

[name] [nvarchar] (50) ,

[type] [int] NOT NULL

)

GO

insert into t (lid,[name],[type])

select "11","城站火车站",0

union all select "11","葵巷建国路口",0

union all select "11","菜市桥",0

union all select "11","潮鸣寺巷",0

union all select "11","宝善桥建国路口",0

union all select "11","宝善桥",0

union all select "11","市体育馆",0

union all select "11","武林广场",0

union all select "11","武林门",0

union all select "11","武林们马塍路口",0

union all select "11","八字桥",0

union all select "11","浙大西溪校区",0

union all select "11","庆丰村",0

union all select "11","教工路口",0

union all select "11","花园新村",0

union all select "11","浙江工商大学",0

union all select "11","电子科技大学",0

union all select "11","翠苑新村",0

union all select "57","大关小区",0

union all select "57","通信市场",0

union all select "57","德胜新村",0

union all select "57","潮王路口",0

union all select "57","朝晖五区",0

union all select "57","朝晖三区",0

union all select "57","西湖文化广场东",0

union all select "57","武林广场",0

union all select "57","武林小广场",0

union all select "57","半道红",0

union all select "57","文三路口",0

union all select "57","上宁桥",0

union all select "57","花园新村",0

union all select "57","浙江工商大学",0

union all select "57","文一路口",0

union all select "57","教工路北口",0

union all select "57","大关桥西",0

union all select "57","上塘路口",0

union all select "57","大关西六苑",0

union all select "57","香积寺路口",0

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章