随笔分类 -  SQL

摘要: 阅读全文
posted @ 2013-02-08 11:49 tinaleft 阅读(152) 评论(0) 推荐(0)
摘要:1. T-sql新增自增长列 1 SET NOCOUNT ON 2 3 DECLARE @id int,@filepath VARCHAR(100) 4 5 SET @id =1 6 7 DECLARE mycursor CURSOR FOR 8 9 SELECT filepath FROM filelist10 11 OPEN mycursor 12 13 FETCH NEXT FROM mycursor 14 INTO @filepath15 16 WHILE @@FETCH_STATUS = 0 17 18 BEGIN 19 ... 阅读全文
posted @ 2012-10-03 20:56 tinaleft 阅读(196) 评论(0) 推荐(0)
摘要:declare @t table(CountryRegionCode nvarchar(3))insert into @t(CountryRegionCode) (select CountryRegionCode from person.CountryRegion where Name like "C%")select * from person.StateProvince where CountryRegionCode in (select * from @t)updatetestsettest.name=ta.namefrom@mytabeastawheretest.i 阅读全文
posted @ 2012-08-28 11:43 tinaleft 阅读(151) 评论(0) 推荐(0)
摘要:组件文件夹静态内容常用的 HTTP 功能默认文档常用的 HTTP 功能HTTP 重定向常用的 HTTP 功能目录浏览常用的 HTTP 功能ASP.Net应用程序开发ISAPI 扩展组件应用程序开发ISAPI 筛选器应用程序开发Windows 身份验证安全性IIS 元数据库管理工具IIS 6 WMI管理工具 阅读全文
posted @ 2012-08-25 10:58 tinaleft 阅读(180) 评论(0) 推荐(0)