摘要:private static void Draw() { Console.Write("请输入:"); string str = Console.ReadLine(); if (Convert.ToInt32(str) <= 1) { ret...
阅读全文
11 2008 档案
摘要:/*定义临时变量*/ declare @Name nvarchar(20) /*定义游标*/ declare Emp_Cursor cursor for select LastName+' '+ FirstName from AdventureWorks.HumanResources.vEmployee open Emp_Cursor fetch next from Emp_Cur...
阅读全文