惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
Securelist
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
C
CERT Recently Published Vulnerability Notes
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
K
Kaspersky official blog
WordPress大学
WordPress大学
I
Intezer
L
Lohrmann on Cybersecurity
V
Vulnerabilities – Threatpost
C
Check Point Blog
A
About on SuperTechFans
AWS News Blog
AWS News Blog
Latest news
Latest news
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Cyber Attacks, Cyber Crime and Cyber Security
SecWiki News
SecWiki News
Recorded Future
Recorded Future
Last Week in AI
Last Week in AI
D
Darknet – Hacking Tools, Hacker News & Cyber Security
The Register - Security
The Register - Security
A
Arctic Wolf
V2EX - 技术
V2EX - 技术
Hacker News: Ask HN
Hacker News: Ask HN
V
V2EX
Scott Helme
Scott Helme
I
InfoQ
Project Zero
Project Zero
Security Archives - TechRepublic
Security Archives - TechRepublic
Recent Announcements
Recent Announcements
Spread Privacy
Spread Privacy
Attack and Defense Labs
Attack and Defense Labs
大猫的无限游戏
大猫的无限游戏
Webroot Blog
Webroot Blog
N
News and Events Feed by Topic
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
NISL@THU
NISL@THU
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

博客园 - 青瓦斋

【转】堆栈和托管堆 c# js Array 跨页面传递类型会丢失 js传递中文参数的问题 - 青瓦斋 - 博客园 SET ROWCOUNT javascript动态改变窗口大小 DefaultProperty("Text"), ToolboxData Asp.Net学习资料(来自MSDN) (转)解析.Net框架下的XML编程技术 (转)浅谈数据库设计技巧 (转)基本的数据库并发控制 c#.net中参数修饰符ref,out ,params得区别 (转)[职场生存]细节和感觉[三]:感觉 (转)[职场生存]细节和感觉[二]:细节包括哪些部分? (转)[职场生存]细节和感觉[一]:细节 C#中的委托(转) SQL查询语句精华使用简要 40种网站设计常用技巧 Visual C#常用函数和方法集汇总 C#的四个基本技巧
用while循环插入测试数据(SQL Server2005)
青瓦斋 · 2008-01-09 · via 博客园 - 青瓦斋

 1declare @index int;
 2set @index = 2000;
 3
 4while(@index < 2011)
 5begin
 6    insert pt_result_part_class_process_avg_time values(
 7    newid(),@index,200,500,150,106,120,55,726,newid(),'2008-01-01',newid(),'2008-01-09',
 8    0,0,'true')
 9    set @index = @index + 1
10end